/* Theme Toggle Styles - Minimal Version */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Theme toggle for mobile */
@media (max-width: 992px) {
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
    
    .theme-toggle i {
        font-size: 1rem;
    }
}

/* Theme toggle for RTL */
[dir="rtl"] .theme-toggle {
    margin-left: 1rem;
    margin-right: 0;
}

/* Theme toggle in header */
.header-buttons .theme-toggle {
    margin-right: 1rem;
    margin-left: 0;
}

/* Theme toggle in mobile navigation */
.mobile-nav .theme-toggle {
    margin: 0 auto;
} 