/* ── Golf Match Play — Front CSS ──────────────────────────── */

/* Fond blanc sur la page Match Play */
.page-id-7 {
    background-color: #ffffff !important;
}
.page-id-7 .site-content,
.page-id-7 .entry-content,
.page-id-7 #content,
.page-id-7 #page {
    background-color: #ffffff !important;
}

.gmp-wrap {
    font-family: inherit;
    margin: 24px 0;
}

.gmp-comp-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a472a;
    border-bottom: 2px solid #1a472a;
    padding-bottom: 8px;
}

.gmp-notice {
    color: #666;
    font-style: italic;
}

.gmp-champion {
    background: linear-gradient(135deg, #1a472a, #2e7d32);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* ── Bracket ──────────────────────────────────────────────── */

.gmp-bracket {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 12px 0 20px;
}

.gmp-round {
    min-width: 160px;
}

.gmp-round-title {
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    padding: 5px 8px;
    background: #1a472a;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.gmp-match {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 10px;
    background: #fff;
}

.gmp-match.gmp-bye {
    opacity: .4;
}

.gmp-match.gmp-completed {
    border-color: #4caf50;
}

.gmp-player {
    padding: 4px 6px;
    font-size: 13px;
    border-radius: 3px;
    line-height: 1.4;
}

.gmp-player.gmp-winner {
    background: #e8f5e9;
    font-weight: 700;
    color: #1b5e20;
}

.gmp-player.gmp-loser {
    color: #bbb;
    text-decoration: line-through;
}

.gmp-tbd {
    color: #ccc;
    font-style: italic;
}

.gmp-vs {
    text-align: center;
    font-size: 10px;
    color: #bbb;
    margin: 2px 0;
}

.gmp-score {
    text-align: center;
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px dashed #eee;
}

/* ── Tableau résultats ─────────────────────────────────────── */

.gmp-results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.gmp-results-table th,
.gmp-results-table td {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.gmp-results-table th {
    background: #1a472a;
    color: #fff;
    font-weight: 600;
}

.gmp-results-table tr:nth-child(even) td {
    background: #f9f9f9;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 600px) {
    .gmp-bracket {
        flex-direction: column;
        align-items: stretch;
    }
    .gmp-round {
        min-width: auto;
    }
}
