/* ── Trophée AS – Front CSS ────────────────────────────── */

.as-trophee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.95em;
}

.as-trophee-table th,
.as-trophee-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.as-trophee-table thead th {
    background: #2c5e1a;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.03em;
}

.as-trophee-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.as-trophee-table tbody tr:hover {
    background: #f0f5ec;
}

/* Podium highlight */
.as-trophee-classement tbody tr:nth-child(1) td:first-child {
    font-weight: 700;
    color: #d4a017;
}
.as-trophee-classement tbody tr:nth-child(2) td:first-child {
    font-weight: 700;
    color: #a0a0a0;
}
.as-trophee-classement tbody tr:nth-child(3) td:first-child {
    font-weight: 700;
    color: #cd7f32;
}

/* Note encart */
.as-trophee-note {
    background: #eef6e8;
    border-left: 4px solid #2c5e1a;
    padding: 8px 14px;
    margin: 0 0 1em;
    font-style: italic;
    font-size: 0.9em;
}

/* Filter */
.as-trophee-filter {
    margin-bottom: 1em;
}

.as-trophee-filter select {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
}

/* Empty state */
.as-trophee-empty {
    color: #666;
    font-style: italic;
}

/* ── Responsive ───────────────────────────────────────── */
@media screen and (max-width: 768px) {
    .as-trophee-table,
    .as-trophee-table thead,
    .as-trophee-table tbody,
    .as-trophee-table th,
    .as-trophee-table td,
    .as-trophee-table tr {
        display: block;
    }

    .as-trophee-table thead {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .as-trophee-table tr {
        border: 1px solid #ddd;
        margin-bottom: 8px;
        border-radius: 4px;
        overflow: hidden;
    }

    .as-trophee-table td {
        position: relative;
        padding-left: 45%;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .as-trophee-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        width: 40%;
        font-weight: 600;
        font-size: 0.85em;
        color: #666;
    }
}
