body {
    background: linear-gradient(to bottom, #6a1b9a, #ab47bc); /* Degradado de morado a lila */
    text-align: center;
    font-family: Arial, sans-serif;
    color: rgb(101, 11, 71);
}

h1 {
    margin-top: 20px;
    color: white; /* Color blanco para resaltar el título */
}

.resistor {
    width: 200px;
    height: 50px;
    background-color: #dcbca5;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 10px;
}

.band {
    width: 12px;
    height: 50px;
    position: absolute;
    border-radius: 5px;
}

.color-option {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 10px;
    cursor: pointer;
    border-radius: 50%; /* Haciendo los cuadros círculos */
    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Sombra para dar contraste */
}

#bandas-container div {
    margin-bottom: 20px;
}

#bandas-container h3 {
    color: rgb(101, 11, 71);
}

button {
    padding: 10px 20px;
    background-color: rgb(101, 11, 71);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #9e2a47;
}

#resultado {
    font-size: 18px;
    margin-top: 20px;
    color: #3b3b3b; /* Contraste oscuro en el texto del resultado */
}
