/* style.css - SHA SYSTEM Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #2563eb;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

.dark {
    --glass-bg: rgba(30, 41, 59, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Noto Sans Arabic', sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top right, #f1f5f9, #e2e8f0);
}

.dark body { background: #0f172a; }

/* Responsive Logic */
@media (max-width: 1024px) {
    aside { display: none !important; } /* شاردنەوەی مێنۆی لای ڕاست لە مۆبایل */
    
    .lg\:mr-64, .mr-64, [class*="mr-"] { 
        margin-right: 0 !important; 
    }

    body { padding-bottom: 80px; } /* شوێن بۆ مێنۆی خوارەوە */
    
    main, .container, .max-w-7xl {
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* ڕێککردنی خشتە تێکچووەکانی ناو وێنەکە */
    .overflow-x-auto {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 1rem;
    }
}

/* Glassmorphism Styles */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Mobile Bottom Nav Styles */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94a3b8;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
}

.mobile-nav-item.active { color: var(--primary); }
.mobile-nav-item i { font-size: 20px; margin-bottom: 3px; }

.mobile-fab {
    width: 54px;
    height: 54px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.4);
    transform: translateY(-18px);
    border: 4px solid white;
}
.dark .mobile-fab { border-color: #0f172a; }