#container {
    position: fixed;
    right: 20px;
    bottom: 10px;
    width: 70px;
    height: 36px;
    border-radius: 18px;
    cursor: pointer;
    background: linear-gradient(145deg, #efc7f3, #482b4b);
    transition: background-color 0.4s ease;
    z-index: 9999;
}

.circle {
    width: 32px;
    height: 32px;
    background: url('img/soleado.png') no-repeat center center;
    background-size: contain;
    background-color: #cbbace;
    border-radius: 50%;
    margin: 2px;
    transition: transform 0.4s, background 0.4s;
}

body.dark-mode .circle {
    transform: translateX(34px);
    background: url('img/luna.png') no-repeat center center;
    background-size: contain;
    background-color: #795b7e;
}
/* Estilos normales */
body {
    background-color: white;
    color: black;
}

/* Estilos para modo oscuro */
body.dark-mode {
    background-color: #121212;
    color: white;
}

