/* =========================================
   تنسيق شريط الفلترة (Filter Bar)
   ========================================= */
.filter-bar {
    background: white; padding: 20px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); display: flex; flex-wrap: wrap;
    gap: 15px; align-items: center; border-bottom: 3px solid var(--ramadan-gold);
    position: relative; z-index: 10; max-width: 1200px; margin: -30px auto 0; width: 90%;
}
.filter-group { flex: 1; min-width: 200px; display: flex; align-items: center; background: #f9f9f9; border-radius: 8px; border: 1px solid #eee; padding: 0 10px; height: 50px; }
.filter-group i { color: var(--ramadan-gold); margin-left: 10px; font-size: 1rem; }
.filter-group select { width: 100%; height: 100%; border: none; background: transparent; font-family: 'Tajawal', sans-serif; font-weight: 600; color: #333; outline: none; cursor: pointer; }

.reset-filters-btn { background: #e74c3c; color: white; border: none; padding: 0 25px; height: 50px; border-radius: 8px; font-family: 'Tajawal', sans-serif; cursor: pointer; transition: 0.3s; font-weight: bold; display: flex; align-items: center; gap: 8px; }
.reset-filters-btn:hover { background: #c0392b; transform: translateY(-2px); }

@media (max-width: 768px) {
    .filter-bar { flex-direction: column; margin-top: -20px; width: 95%; padding: 15px; }
    .filter-group, .reset-filters-btn { width: 100%; }
}

/* =========================================
   ألوان الفترات (Period Badge Colors)
   ========================================= */
.badge-purple { background: #ff0000 !important; color: white; }
.badge-teal { background: #16a085 !important; color: white; }
.badge-blue { background: #2980b9 !important; color: white; }
.badge-orange { background: #f26329 !important; color: white; }
.badge-red { background: #e74c3c !important; color: white; }
.badge-gold { background: var(--ramadan-gold) !important; color: white; }