/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    padding: 3px;
}

.theme-toggle:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-light);
}

.theme-toggle-slider {
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .theme-toggle-slider {
    transform: translateX(30px);
}

.theme-toggle-icon {
    font-size: 14px;
    line-height: 1;
}
