/* ============================================================================
   ADUAPORTIX THEME - Theme Toggle Switch & Mode Logic
   Parte de la Fase 9 de Refactorización.
   ============================================================================ */

.adx-theme-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: transparent;
    border: 1px solid var(--ix-border);
    color: var(--ix-text-3);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ix-transition);
    z-index: 10005;
    font-size: 0.95rem;
}

.adx-theme-toggle:hover {
    background: var(--ix-bg-card);
    color: var(--ix-accent);
    border-color: var(--ix-accent);
}

.aduaportix-scope.adx-light-mode .adx-theme-toggle .icon-sun { display: none; }
.aduaportix-scope:not(.adx-light-mode) .adx-theme-toggle .icon-moon { display: none; }