/* Applique un fond sombre général */
body {
    background-color: #121212;
    color: #E0E0E0;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Style du titre */
h1 {
    color: #BB86FC;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style du tableau */
table {
    width: 90%;
    margin: auto;
    border-collapse: collapse;
    background-color: #1E1E1E;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Style des en-têtes du tableau */
th {
    background-color: #333;
    color: #BB86FC;
    padding: 10px;
    font-size: 16px;
    border-bottom: 2px solid #BB86FC;
}

/* Style des cellules du tableau */
td {
    padding: 10px;
    border-bottom: 1px solid #444;
}

/* Style des images */
img {
    width: 100px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

/* Effet au survol des images */
img:hover {
    transform: scale(1.1);
}

/* Style des champs input */
input[type="number"] {
    width: 50px;
    background-color: #222;
    color: #E0E0E0;
    border: 1px solid #BB86FC;
    border-radius: 5px;
    text-align: center;
    padding: 5px;
}

/* Style des liens */
a {
    color: #03DAC6;
    text-decoration: none;
    transition: color 0.3s;
}

/* Effet au survol des liens */
a:hover {
    color: #00FFC8;
}

/* Style des lignes paires du tableau */
tbody tr:nth-child(even) {
    background-color: #2A2A2A;
}

/* Effet au survol des lignes du tableau */
tbody tr:hover {
    background-color: #333;
}
