body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
}

select {
    width: 100%;
    margin-top: 5px;
    padding: 5px;
}

.band-dropdown {
    width: 100%;
    margin-top: 10px;
    padding: 5px;
}

.result {
    margin-top: 20px;
}

/* Pour appliquer la couleur de fond dynamiquement */
select.dynamic-bg {
    color: #fff; /* Forcer le texte blanc pour les couleurs sombres */
}
