/* Material Design Table Styling */

body {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    background-color: #f5f5f5;
    padding: 20px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/VEEC-Volley-ball_logo-lite.jpg'); /* Image de fond */
    background-size: 80%;
    background-position: left 50% top 10px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: opacity(0.4); /* Atténue l’image */
    z-index: -1; /* Met la couche derrière le contenu */
}

.content {
    max-width: 1500px;
    margin: 10px auto;
    background: rgba(255, 255, 255, 0.8); /* Fond blanc semi-transparent pour le texte */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #6200ea;
    color: white;
    text-align: left;
    font-weight: bold;
}

thead th {
    padding: 12px 16px;
    text-transform: uppercase;
    text-align: center;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}

tbody tr:hover {
    background: rgba(98, 0, 234, 0.1);
}

tbody td {
    padding: 12px 16px;
    color: #333;
    text-align: center;
}

tbody tr:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
