/* إصلاح أيقونة القائمة الجانبية - تظهر في جميع الأحجام */
.mobile-menu-btn {
    display: flex !important;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* تأكيد إظهار الأيقونة في جميع أحجام الشاشات */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        display: flex !important;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
} 