/* =====================================================
   CS DÉCINES BASKET
   Pages des équipes
   ===================================================== */


/* ---------- PAGE ---------- */

body {
    margin: 0;
    background-color: #161616;
    color: white;
    font-family: Arial, sans-serif;
}


/* ---------- TITRE DE L'ÉQUIPE ---------- */

h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    margin: 35px 0 20px;
}


/* ---------- ANCIEN CALENDRIER HTML ---------- */

.calendrier-equipe {
    width: 92%;
    max-width: 1150px;
    margin: 30px auto;
}

.calendrier-equipe h2 {
    text-align: center;
    color: #ff343b;
    font-size: 28px;
    margin-bottom: 25px;
}

.calendrier-equipe table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1b1b1b;
}

.calendrier-equipe th {
    background-color: #ff343b;
    color: white;
    padding: 15px;
    text-transform: uppercase;
}

.calendrier-equipe td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #3a3a3a;
}


/* =====================================================
   ZONE AUTOMATIQUE FFBB
   ===================================================== */

#ffbb-resultats {
    width: 94%;
    max-width: 1250px;
    margin: 30px auto;
}


/* Calendrier + classement côte à côte */

.ffbb-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 25px;
    align-items: start;
}


/* ---------- CALENDRIER FFBB ---------- */

.ffbb-calendrier {
    min-width: 0;
}

.ffbb-calendrier h2 {
    text-align: center;
    color: #ff343b;
    margin: 0 0 15px;
}

.ffbb-tableau {
    width: 100%;
    border-collapse: collapse;
    background-color: #1b1b1b;
    border-radius: 10px;
    overflow: hidden;
}

.ffbb-tableau th {
    background-color: #ff343b;
    color: white;
    padding: 12px 8px;
    text-transform: uppercase;
}

.ffbb-tableau td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #3a3a3a;
}

.ffbb-tableau tbody tr:hover {
    background-color: #292929;
}


/* ---------- CLASSEMENT FFBB ---------- */

.ffbb-classement-zone {
    min-width: 0;
}

.ffbb-classement-zone h2 {
    text-align: center;
    color: #ff343b;
    margin: 0 0 15px;
}

.ffbb-classement {
    width: 100%;
    border-collapse: collapse;
    background-color: #1b1b1b;
    border-radius: 10px;
    overflow: hidden;
}

.ffbb-classement th {
    background-color: #ff343b;
    color: white;
    padding: 12px 8px;
}

.ffbb-classement td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #3a3a3a;
}


/* ---------- CLASSEMENT PAS ENCORE DISPONIBLE ---------- */

.ffbb-attente {
    background-color: #1b1b1b;
    padding: 30px 15px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #333;
}


/* ---------- MOBILE / TABLETTE ---------- */

@media (max-width: 850px) {

    .ffbb-layout {
        grid-template-columns: 1fr;
    }

    #ffbb-resultats {
        width: 96%;
    }

    h1 {
        font-size: 28px;
    }

    .ffbb-tableau th,
    .ffbb-tableau td {
        padding: 8px 4px;
        font-size: 14px;
    }

.logo-site {
    display: block;
    width: fit-content;
    margin: 20px auto;
}

.logo-site img {
    width: 110px;
    height: auto;
    display: block;
}

.logo-site img:hover {
    transform: scale(1.05);
}

.logo-site img {
    transition: transform 0.2s ease;
}
}