.theme-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-btn:hover {
    color: var(--primary-color);
}

/* إخفاء/إظهار الأيقونات حسب الوضع */
.light-icon,
.dark-icon {
    display: none;
}

/* في الوضع النهاري، نظهر أيقونة القمر بلون داكن */
:root[data-theme="light"] .dark-icon {
    display: inline-block;
    color: #333333;
}

/* في الوضع الليلي، نظهر أيقونة الشمس بلون فاتح */
:root[data-theme="dark"] .light-icon {
    display: inline-block;
    color: #ffffff;
}
