/* style.css - الهوية البصرية لنظام البلدية الذكي */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

/* الهيدر الحكومي */
.gov-header {
    background: linear-gradient(135deg, #0f2b46 0%, #1a4a75 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gov-logo-area i {
    font-size: 2.5rem;
    color: #38bdf8;
}

/* الكروت والحاويات */
.smart-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    overflow: hidden;
}

.smart-card-header {
    background: #ffffff;
    border-bottom: 2px solid #edf2f7;
    padding: 25px 30px 15px;
}

.smart-card-body {
    padding: 30px;
}

/* عناصر الإدخال */
.form-label {
    font-weight: 600;
    color: #1a4a75;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #1a4a75;
    box-shadow: 0 0 0 3px rgba(26, 74, 117, 0.1);
}

/* الأزرار */
.btn-gov {
    background-color: #1a4a75;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-gov:hover {
    background-color: #0f2b46;
    color: white;
    transform: translateY(-2px);
}

/* لوحة التحكم */
.admin-sidebar {
    background-color: #0f2b46;
    min-height: 100vh;
    color: white;
}

.table-responsive {
    border-radius: 12px;
    overflow: hidden;
}

/* شارات أنواع الشكاوى */
.badge-roads { background-color: #64748b; color: white; }
.badge-electricity { background-color: #eab308; color: #000; }
.badge-water { background-color: #3b82f6; color: white; }
.badge-cleanliness { background-color: #22c55e; color: white; }