/* Estilos para el botón de tema en páginas de Account (estáticas) */
.theme-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    color: inherit;
}

.theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle-btn:active {
    background-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
