/* FILE: assets/css/ppid.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root { 
    --color-primary: #1e3a8a;
    --color-secondary: #047857;
    --color-accent: #d97706;
    --color-danger: #be123c;
    --color-bg: #f8fafc; 
    --color-text: #0f172a; 
    --color-text-muted: #64748b;
    --color-card: #ffffff;
    --border-color: #cbd5e1;
    --soft-teal-border: #99f6e4;
    --transition-ease: all 0.3s ease-in-out;
    --shadow-soft-sm: 0 4px 15px rgba(30, 58, 138, 0.08);
    --shadow-soft-lg: 0 12px 35px rgba(30, 58, 138, 0.12);
}

body { margin: 0; font-family: 'DM Sans', sans-serif; background: var(--color-bg); color: var(--color-text); transition: all 0.3s ease; overflow-x: hidden;}
a { text-decoration: none; transition: var(--transition-ease); color: inherit; }

.navbar { background: var(--color-card); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; border-bottom: 2px solid var(--border-color);}
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 20px; color: var(--color-primary);}
.nav-brand img { height: 42px; width: auto; object-fit: contain; }
.nav-brand span { color: var(--color-secondary); }
.btn-back { background: var(--color-primary); color: white; padding: 9px 18px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 13px; transition: 0.3s ease; display: inline-flex; align-items: center; gap: 8px;}
.btn-back:hover, .btn-back:focus { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.15); outline: none; background:var(--color-secondary);}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; min-height: 75vh;}

/* ========================================================= */
/* STYLING MINI HERO PPID                                    */
/* ========================================================= */
.hero-ppid { 
    background: linear-gradient(135deg, var(--color-primary), #3b82f6); 
    color: white; 
    padding: 50px 30px; 
    border-radius: 24px; 
    text-align: center; 
    margin: 25px 0 35px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}
.hero-ppid::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%;
}
.hero-ppid::after {
    content: ''; position: absolute; bottom: -50px; left: -50px; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%;
}
.hero-ppid .badge {
    background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px);
    color: #ffffff; padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
}
.hero-ppid h1 { font-family: 'Outfit', sans-serif; font-size: 32px; margin: 0 0 10px 0; font-weight: 800; position: relative; z-index: 2;}
.hero-ppid p { margin: 0 auto; font-size: 15px; color: #e2e8f0; max-width: 700px; line-height: 1.6; position: relative; z-index: 2;}

/* ========================================================= */
/* STYLING DASHBOARD GRID KATEGORI (SOFT UI CARD DESIGN)     */
/* ========================================================= */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 10px; }

.dashboard-card { 
    background: #ffffff; 
    border: 2px solid var(--border-color); 
    border-radius: 20px; 
    padding: 35px 20px 25px 20px; 
    text-align: center; 
    text-decoration: none; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: space-between;
    min-height: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    position: relative; 
    overflow: hidden; 
    transition: all 0.3s ease;
}
.dashboard-card:hover, .dashboard-card:focus { 
    transform: translateY(-8px) scale(1.02); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
    border-color: var(--color-primary);
    outline: none;
}

/* VIP GLOWING EFFECT UNTUK LAYANAN E-PPID */
.premium-layanan {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--color-card), var(--color-card)), linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
    animation: pulse-glow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15); }
    50% { box-shadow: 0 12px 35px rgba(4, 120, 87, 0.3); }
}
.premium-layanan:hover { animation: none; border-color: transparent; }

.icon-box { 
    width: 75px; 
    height: 75px; 
    border-radius: 22px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 32px; 
    margin-bottom: 20px; 
    transition: transform 0.3s ease;
}
.dashboard-card:hover .icon-box { transform: scale(1.1); }

.dashboard-card h3 { margin: 0 0 20px 0; font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: #1e293b; line-height: 1.3;}
.pill-badge { background: #f1f5f9; color: #64748b; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; padding: 6px 18px; border-radius: 50px; }

.ribbon-prioritas {
    position: absolute; top: 22px; right: -32px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-danger));
    color: #ffffff; padding: 5px 35px; font-size: 10px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase; transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ========================================================= */
/* TAMBAHAN SECTION STATISTIK & BERITA DI HALAMAN DEPAN PPID */
/* ========================================================= */
.front-section { margin-top: 50px; margin-bottom: 50px; }
.section-header-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--color-primary); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

/* Statistik PPID Grid */
.stat-ppid-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.stat-ppid-card { background: white; padding: 25px; border-radius: 18px; border: 1px solid var(--border-color); display: flex; align-items: center; gap: 20px; box-shadow: var(--shadow-soft-sm); transition: var(--transition-ease); }
.stat-ppid-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft-lg); border-color: var(--color-primary); }
.stat-icon-large { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.stat-info-text h4 { margin: 0 0 5px 0; font-size: 14px; color: var(--color-text-muted); font-weight: 600; }
.stat-info-text h2 { margin: 0; font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--color-text); }

/* Grid Peta & Statistik Penduduk */
.info-utama-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; margin-top: 20px;}
.info-col { background: var(--color-card); border-radius: 22px; padding: 28px 24px; box-shadow: var(--shadow-soft-sm); border: 1px solid var(--border-color); display: flex; flex-direction: column; }
.info-col-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--color-text); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(30, 58, 138, 0.15); display: flex; align-items: center; gap: 10px; }
.info-col-title i { color: var(--color-primary); }

/* Elemen Peta */
.map-wrapper { width: 100%; height: 200px; border-radius: 14px; overflow: hidden; margin-bottom: 16px; border: 1px solid var(--border-color); position: relative; }
.map-wrapper iframe { width: 100%; height: calc(100% + 50px); border: none; position: absolute; top: 0; left: 0; }
.contact-details { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.6; }
.contact-details div { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 6px; }
.contact-details i { color: var(--color-secondary); margin-top: 4px; width: 16px; }

/* Elemen Statistik Warga (Progress Bar) */
.stat-chart-box { background: #f1f5f9; padding: 16px; border-radius: 16px; margin-bottom: 16px; border: 1px solid var(--border-color); }
.stat-chart-title { font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 10px; display: flex; justify-content: space-between; }
.stat-progress-bg { width: 100%; height: 14px; background: rgba(190, 18, 60, 0.25); border-radius: 50px; overflow: hidden; display: flex; }
.stat-progress-fill { height: 100%; background: linear-gradient(90deg, var(--color-primary), #3b82f6); border-radius: 50px 0 0 50px; }
.stat-chart-legend { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11.5px; font-weight: 600; }
.legend-lk { color: var(--color-primary); }
.legend-pr { color: var(--color-danger); }
.stats-list { display: flex; flex-direction: column; gap: 12px; justify-content: center; flex-grow: 1; }
.stat-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: #f1f5f9; border-radius: 14px; }
.stat-label { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--color-text); }
.stat-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.stat-value { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--color-primary); }

/* Berita Grid UI */
.berita-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.btn-lihat-semua { font-size: 13px; font-weight: 700; color: var(--color-primary); background: rgba(30, 58, 138, 0.1); padding: 8px 18px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(30, 58, 138, 0.2); transition: var(--transition-ease); cursor: pointer; }
.btn-lihat-semua:hover { background: var(--color-primary); color: white; border-color: transparent; box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3); transform: translateY(-2px); }

.berita-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 24px; padding-bottom: 10px; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.berita-grid::-webkit-scrollbar { display: none; }
.berita-card { min-width: calc((100% - 48px) / 3); scroll-snap-align: start; background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft-sm); border: 1px solid var(--border-color); transition: var(--transition-ease); display: flex; flex-direction: column; }
.berita-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft-lg); border-color: var(--color-primary); }
.berita-thumb { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #e2e8f0; display: flex; align-items: center; justify-content: center; }
.berita-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.berita-card:hover .berita-thumb img { transform: scale(1.05); }
.berita-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.berita-meta { display: flex; align-items: center; gap: 12px; font-size: 11.5px; color: var(--color-text-muted); margin-bottom: 10px; font-weight: 600; }
.berita-meta i { color: var(--color-secondary); }
.berita-body h4 { font-size: 16px; color: var(--color-text); margin: 0 0 10px 0; font-weight: 700; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.berita-body p { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
.berita-link { font-size: 13.5px; font-weight: 700; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.pagination-box { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 20px; }
.page-btn { min-width: 40px; height: 40px; border-radius: 10px; background: white; border: 1px solid var(--border-color); color: var(--color-text); font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-ease); }
.page-btn:hover { background: #f1f5f9; border-color: var(--color-primary); color: var(--color-primary); }

/* ========================================================= */
/* MEGA FOOTER MODERN 4 KOLOM                                */
/* ========================================================= */
footer { background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); color: #94a3b8; padding: 70px 5% 25px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px;}
.footer-wrapper { display: grid; grid-template-columns: 1.3fr 1fr 1.1fr 1.2fr; gap: 36px; max-width: 1280px; margin: 0 auto 50px; text-align: left; }
.footer-col { display: flex; flex-direction: column; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: #ffffff; margin-bottom: 16px; font-family: 'Outfit', sans-serif;}
.footer-brand img { height: 44px; width: auto; object-fit: contain; }
.footer-brand span { background: linear-gradient(135deg, #6B9BD1, #5BB3A0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: #94a3b8; margin-bottom: 20px; }
.footer-trust-badges { display: flex; flex-direction: column; gap: 8px; }
.trust-badge-item { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 6px 12px; border-radius: 8px; font-size: 11.5px; color: #cbd5e1; font-weight: 600; }
.trust-badge-item i { color: #5BB3A0; }
.footer-col h4 { color: #ffffff; font-size: 16px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 8px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2.5px; background: linear-gradient(90deg, #6B9BD1, #5BB3A0); border-radius: 2px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 11px; display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.footer-col ul li i { color: #6B9BD1; margin-top: 4px; font-size: 12px; }
.footer-col ul li a { color: #94a3b8; transition: var(--transition-ease); }
.footer-col ul li a:hover { color: #ffffff; transform: translateX(4px); }
.footer-hotline-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 14px 16px; margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.footer-hotline-box i { font-size: 24px; color: #5BB3A0; }
.hotline-text span { display: block; font-size: 11px; color: #94a3b8; text-transform: uppercase; font-weight: 700; }
.hotline-text strong { font-size: 14px; color: #ffffff; font-family: 'Outfit', sans-serif; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12.5px; max-width: 1280px; margin: 0 auto;}
.footer-bottom-links { display: flex; align-items: center; gap: 18px; }
.footer-bottom-links a { color: #94a3b8; transition: 0.2s; }
.footer-bottom-links a:hover { color: #ffffff; }
.btn-scroll-top { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-ease); }
.btn-scroll-top:hover { background: #6B9BD1; transform: translateY(-2px); }

/* ========================================================= */
/* STYLING BREADCRUMB & SUB-MENU TABS (GLASSMORPHISM)        */
/* ========================================================= */
.breadcrumb-ppid { margin-bottom: 15px; display: flex; align-items: center; margin-top: 20px;}
.btn-kembali-menu { background: #f1f5f9; color: var(--color-text); padding: 8px 15px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: 0.2s; border: 1px solid #cbd5e1;}
.btn-kembali-menu:hover, .btn-kembali-menu:focus { background: #e2e8f0; color: var(--color-primary); outline: none;}

.tab-nav-container { margin-bottom: 25px; position: relative; z-index: 10; }
.tab-row { 
    display: flex; gap: 8px; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; 
    padding: 8px; scrollbar-width: none;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}
.tab-row::-webkit-scrollbar { display: none; }
.tab-btn { 
    flex: 1; text-decoration: none; padding: 12px 18px; font-weight: 700; font-size: 13px; 
    color: #475569; border-radius: 50px; transition: all 0.3s ease; white-space: nowrap; 
    text-align: center; display: inline-flex; align-items: center; justify-content: center; 
    gap: 6px; border: none; background: transparent; box-sizing: border-box;
}
.tab-btn:hover, .tab-btn:focus { 
    background: rgba(255, 255, 255, 0.8); color: var(--color-primary); transform: translateY(-1px); outline: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.tab-btn.active { 
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); 
    color: #fff; border-color: transparent; box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
}
.tab-content { display: block; background: var(--color-card); padding: 30px; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.04); border: 1px solid var(--border-color);}

/* ========================================================================== */
/* PERBAIKAN RESPONSIVE (MENGADAPTASI LAYOUT MOBILE)                          */
/* ========================================================================== */
@media (max-width: 900px) {
    .container { padding: 0 15px; }
    .hero-ppid { padding: 35px 20px; border-radius: 18px; margin: 15px 0 25px 0;}
    .hero-ppid h1 { font-size: 24px; line-height: 1.3; }
    .hero-ppid p { font-size: 13px; }
    
    .dashboard-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .dashboard-card { padding: 16px 8px 14px; border-radius: 18px; min-height: unset;}
    .icon-box { width: 48px; height: 48px; font-size: 22px; margin-bottom: 10px; border-radius: 14px; }
    .dashboard-card h3 { font-size: 12.5px; margin-bottom: 6px; line-height: 1.25; }
    .pill-badge { font-size: 8.5px; padding: 3px 8px; }
    .ribbon-prioritas { font-size: 8px; padding: 3px 25px; top: 10px; right: -25px; }
    
    .info-utama-grid { grid-template-columns: 1fr; }
    .berita-card { min-width: calc((100% - 24px) / 2); }
    .footer-wrapper { grid-template-columns: 1fr 1fr; gap: 30px; }
    .tab-btn { flex: 0 0 auto; min-width: 140px; padding: 10px 14px; font-size: 12px;}
}
@media (max-width: 480px) {
    .nav-brand span { font-size: 13.5px; }
    .btn-back { padding: 6px 10px; font-size: 11px; gap: 4px; }
    .btn-back span { display: none; }
    
    .dashboard-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .dashboard-card { padding: 14px 4px 12px; border-radius: 16px; }
    .icon-box { width: 40px; height: 40px; font-size: 18px; margin-bottom: 8px; border-radius: 12px; }
    .dashboard-card h3 { font-size: 11px; margin-bottom: 4px; line-height: 1.2; }
    .pill-badge { font-size: 7.5px; padding: 2px 6px; letter-spacing: 0.3px; }
    .ribbon-prioritas { font-size: 7px; padding: 2px 20px; top: 8px; right: -20px; }
    
    .stat-ppid-grid { grid-template-columns: 1fr; }
    .berita-card { min-width: 100%; }
    .footer-wrapper { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}

/* AKSESIBILITAS BAWAAN PPID */
.a11y-fab { position: fixed; bottom: 30px; right: 30px; width: 52px; height: 52px; background: linear-gradient(135deg, #10B981, #059669); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 9999; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 2px solid #ffffff;}
.a11y-fab:hover, .a11y-fab:focus { transform: scale(1.1); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4); outline: none;}
.a11y-menu { position: fixed; bottom: 92px; right: 30px; background: #ffffff; width: 260px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); padding: 16px; z-index: 9998; display: none; flex-direction: column; gap: 10px; border: 1px solid #e5e7eb;}
.a11y-menu.active { display: flex; }
.a11y-header { font-weight: 800; color: #1f2937; font-size: 14px; border-bottom: 2px solid #f3f4f6; padding-bottom: 8px; margin-bottom: 4px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px;}
.a11y-btn { background: #f9fafb; border: 1px solid #d1d5db; padding: 11px 12px; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600; color: #374151; display: flex; align-items: center; gap: 10px; transition: all 0.2s ease; text-align: left; width: 100%; box-sizing: border-box;}
.a11y-btn.active-feature { background: #dcfce7; border-color: #10b981; color: #065f46; font-weight: 700;}
body.high-contrast { background: #121212 !important; color: #f1f1f1 !important;}
body.high-contrast * { background-color: #121212 !important; color: #f1f1f1 !important; border-color: #444 !important;}
body.high-contrast a { color: #fbbf24 !important;}
body.high-contrast .btn-submit, body.high-contrast .btn-download-secure { background: #059669 !important; color: #ffffff !important;}