.theme-toggle {
    display: flex;
    align-items: center;
}

.theme-btn {
    background: var(--theme-btn-bg, rgba(0, 0, 0, 0.05));
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--text-gray, #6b7280);
}

.theme-btn:hover {
    background: var(--theme-btn-hover, rgba(0, 0, 0, 0.1));
    color: var(--text-dark, #111827);
}

.theme-btn i {
    font-size: 1rem;
    display: none;
}

/* Show correct icon based on theme */
[data-theme="light"] .theme-icon-light,
html:not([data-theme]) .theme-icon-light {
    display: block;
}

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

[data-theme="system"] .theme-icon-system {
    display: block;
}
