body {
    font-family: Arial, sans-serif;
    background-color: #f8e8c9;
    text-align: center;
    margin: 0;
    padding: 0;
}

.configuracion-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
}

.opcion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e6d5b8;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    gap: 10px;
}

.texto-opcion {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1; 
}

h1{
    font-weight: 800;
    font-size: 2.6em;
}

.textos{
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.icono {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* The switch - the box around the slider */
.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* Slider */
  .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    border: 2px solid #414141;
    background-color: rgb(198, 198, 198);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 1.4em;
    left: 0.2em;
    bottom: 0.2em;
    background-color: rgb(121, 117, 117);
    border-radius: inherit;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .switch input:checked + .slider {
    box-shadow: 0 0 10px rgba(59, 167, 5, 0.8);
    border: 2px solid rgba(59, 167, 5, 0.8);
    background-color: rgb(219, 219, 219);
  }
  
  .switch input:checked + .slider:before {
    transform: translateX(1.5em);
  }

/* Boton de Volver */
#btn-volver {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background-color: rgb(216, 213, 213);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#btn-volver:active {
    opacity: 0.5;
    transform: scale(0.85);
}

#btn-volver svg {
    width: 27px;
    height: 27px;
    opacity: 80%;
    transition: 0.2s;
    padding-right: 2px;
    fill: black;
}

a {
    text-decoration: none;
    color: inherit;
}

a svg {
    color: inherit;
}