/* ============================================
   Dark Mode Toggle — LumivioPress
   ============================================ */

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    margin-left: 1rem;
}

.theme-toggle:hover {
    color: var(--color-primary);
    background: var(--bg-secondary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* Show/Hide icons based on theme */
[data-theme="light"] .moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .theme-toggle {
        margin-left: 0;
        margin-right: 1rem;
    }
}