/* Hide the "Hole Par" column in event results tables */

/* Hide the header cell (Hole Par) */
.sp-event-results th:nth-child(2) {
    display: none !important;
}

/* Hide all data cells in that column */
.sp-event-results td.data-holepar {
    display: none !important;
}

/* Birdie circle */
span.birdie {
    border: 2px solid #4caf50;
    border-radius: 50%;
    padding: 2px 6px;
}

/* Eagle double circle */
span.eagle {
    border: 3px double #2196f3;
    border-radius: 50%;
    padding: 2px 6px;
}

/* Bogey square */
span.bogey {
    border: 2px solid #ff9800;
    padding: 2px 6px;
}

/* Double bogey filled square */
span.double-bogey {
    background: #ff9800;
    color: #fff;
    padding: 2px 6px;
}

/* Par (normal) */
span.par {
    font-weight: bold;
}

/* Blank / N/A */
span.hole-na {
    opacity: 0.3;
}
