/* homepage.css - Specifieke styles voor homepage */

/* Hero Sectie Verfijningen */
.fajaede-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* VERBETERING: Donkere basiskleur om 'flits' van paarse gradient te voorkomen. */
    background: #2d3748; 
    min-height: 400px; /* CLS FIX: Reserveer ruimte om verschuivingen te voorkomen */
    overflow: hidden; /* Zorg dat de img binnen de border-radius blijft */
}

/* LCP Optimalisatie: Afbeelding als element ipv background */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* Achter de content en overlay */
}

/* Overlay voor leesbaarheid tekst */
.fajaede-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Donkere laag over foto */
    z-index: 1;
    border-radius: 25px;
}

/* Zorg dat content boven de overlay ligt */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FIX: Kopteksten onder het hero gebied centreren */
.fajaede-homepage .site-content h1,
.fajaede-homepage .site-content h2,
.fajaede-homepage .site-content h3 {
    text-align: center;
}

/* Featured Posts op Homepage */
.homepage-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-10px);
}

/* Community Stats */
.community-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6a11cb;
    display: block;
}

/* Call-to-Action Sectie */
.homepage-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    border-radius: 20px;
    margin: 50px 0;
}

/* Responsive voor homepage */
@media (max-width: 768px) {
    /* LCP FIX: Minder hoog op mobiel laadt visueel sneller */
    .fajaede-hero {
        min-height: 300px;
    }

    /* LCP FIX: Snellere animatie op mobiel zodat tekst directer zichtbaar is */
    .hero-content {
        animation-duration: 0.5s;
    }

    .community-stats {
        flex-direction: column;
    }
    
    .homepage-featured {
        grid-template-columns: 1fr;
    }
}

/* Professioneel Contact Formulier */
.fajaede-contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 40px auto;
    border: 1px solid rgba(0,0,0,0.02);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fajaede-contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.fajaede-contact-form .form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fajaede-contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.fajaede-contact-form input,
.fajaede-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    box-sizing: border-box;
}

.fajaede-contact-form input:focus,
.fajaede-contact-form textarea:focus {
    border-color: #6a11cb;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(106, 17, 203, 0.1);
}

.fajaede-contact-form textarea {
    min-height: 250px;
    resize: vertical;
}

/* Footer Styles */
.site-footer {
    background: #1a202c; /* Donkere achtergrond */
    color: #cbd5e0;       /* Lichte tekst */
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer .footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .footer-widget-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.site-footer .site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Footer Inhoud Styling */
.footer-column p {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.footer-links li:last-child, .footer-contact li:last-child {
    border-bottom: none;
}

.footer-links a, .footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #fff;
    padding-left: 5px; /* Klein schuif-effect bij hover */
}

/* Social Media Menu in Footer */
.footer-social {
    margin: 30px 0;
    text-align: center;
}

.social-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-menu-items li a {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-menu-items li a:hover {
    background: #6a11cb;
    border-color: #6a11cb;
    transform: translateY(-2px);
}

.fajaede-contact-form button[type="submit"] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fajaede-contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 117, 252, 0.2);
}

/* Verberg de standaard footer van het parent theme (Twenty Twenty-Four) */
.wp-site-blocks > footer {
    display: none !important;
}

/* Header & Navigatie Styles */
.site-header {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* VERBETERING: Gebruik position: sticky om layout-verschuiving (CLS) te voorkomen. */
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Top Bar Styling (Login/Registreer) */
.header-top-bar {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 6px 0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    /* Zorg dat hij niet over de content valt bij laden */
    transform-origin: top;
}

.header-top-inner {
    max-width: 1200px; /* Matcht met header-inner */
    margin: 0 auto;
    padding: 0 20px; /* Matcht met header padding */
    display: flex;
    justify-content: flex-end; /* Rechts uitlijnen */
    gap: 20px;
    align-items: center;
}

.user-link, .user-welcome {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* Maak er nette knopjes van */
    background: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.user-link:hover {
    color: #6a11cb;
    border-color: #6a11cb;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(106, 17, 203, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Visuele stijl voor de header wanneer er gescrold is */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Verberg Top Bar bij Sticky Header voor rustig beeld */
.site-header.scrolled .header-top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom: none;
}

/* Hoofdmenu Styling (Verplaatst uit functions.php) */
.primary-menu,
.main-navigation > div > ul { /* Fallback support voor als er geen menu is toegewezen */
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; /* FIX: Zorgt dat menu items naar volgende regel gaan als ze niet passen */
    justify-content: flex-end; /* Optioneel: lijnt menu rechts uit */
}

.primary-menu a,
.main-navigation > div > ul a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Mobiele menu knop (standaard verborgen op desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    color: #333;
    z-index: 2001; /* Zorg dat knop altijd bovenop ligt */
}

/* Animaties */
@keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Zoekbalk Styling */
.header-search {
    margin-left: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px; /* Ronde, moderne vorm */
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
    background: #fff;
}

.search-field {
    border: none;
    background: transparent;
    padding: 8px;
    font-size: 0.95rem;
    outline: none;
    color: #4a5568;
    width: 150px;
    transition: width 0.3s ease;
}

.search-field:focus {
    width: 200px; /* Wordt breder bij typen */
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    color: #a0aec0;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.search-submit:hover {
    color: #6a11cb;
}

/* Screen reader text (Essentieel voor SEO/Toegankelijkheid) */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .header-search {
        display: none; /* Verberg op mobiel om ruimte te besparen */
    }

    .menu-toggle {
        display: block;
    }

    .primary-menu,
    .main-navigation > div > ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        width: 100%; /* FIX: Gebruik volledige breedte */
        box-sizing: border-box; /* FIX: Padding telt mee in breedte */
        z-index: 2000; /* FIX: Zorg dat menu boven andere content ligt */
    }

    .primary-menu.active,
    .main-navigation > div > ul.active {
        display: flex;
    }
}

/* Subpagina Hero (voor de 17 andere pagina's) */
.subpage-hero {
    padding: 60px 20px;
    min-height: 200px;
    margin-bottom: 40px;
    justify-content: center;
    text-align: center;
}

.subpage-hero .hero-title {
    font-size: 2.5rem;
    margin: 0;
}

/* Submenu / Dropdown Styling */
.primary-menu .menu-item-has-children {
    position: relative;
}

.primary-menu .sub-menu {
    display: none; /* Wordt getoond door JS bij hover/klik */
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 9999;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.05);
}

.primary-menu .sub-menu li {
    display: block;
    margin: 0;
}

.primary-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    white-space: normal; /* FIX: Laat tekst afbreken bij lange namen */
    word-wrap: break-word; /* FIX: Breek hele lange woorden af */
}

.primary-menu .sub-menu a:hover {
    background: #f7fafc;
    color: #6a11cb;
    padding-left: 25px; /* Klein schuif-effect */
}

/* Pijltje indicator */
.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #cbd5e0;
}

.menu-item-has-children > a:hover::after {
    border-top-color: #6a11cb;
}

/* Mobiele aanpassingen voor submenus */
@media (max-width: 768px) {
    .primary-menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        padding-left: 15px;
        width: 100%;
        box-sizing: border-box;
        /* display wordt geregeld door JS */
    }
    
    .primary-menu .sub-menu a {
        white-space: normal;
    }
}

/* Styling voor ondertitel op subpagina's */
.subpage-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Verberg de standaard featured image in de tekst (want die staat al in de Hero) */
.wp-block-post-featured-image {
    display: none !important;
}

/* ============================================
   SPLIT HERO LAYOUTS (Foto 35% / Tekst 65%)
   ============================================ */

.fajaede-hero.hero-split {
    flex-direction: row; /* Standaard naast elkaar */
    padding: 0; /* Padding wordt nu intern geregeld */
    overflow: hidden; /* Zorg dat foto binnen de ronde hoeken blijft */
    align-items: stretch; /* Rek uit over volledige hoogte */
    min-height: 400px;
}

/* Verberg de donkere overlay bij split layout (want tekst staat op kleur) */
.fajaede-hero.hero-split::before {
    display: none;
}

.fajaede-hero.hero-split .hero-content {
    flex: 1; /* Neemt de resterende ruimte in (ong. 65%) */
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.fajaede-hero.hero-split .hero-image-container {
    width: 35%; /* De gevraagde 35% */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
}

/* Zorg dat de img in split layout de container vult */
.fajaede-hero.hero-split .hero-image-container {
    position: relative;
}

/* Foto Links, Tekst Rechts */
.fajaede-hero.hero-split.split-left {
    flex-direction: row-reverse; 
}

/* Responsive: Op mobiel onder elkaar */
@media (max-width: 768px) {
    .fajaede-hero.hero-split,
    .fajaede-hero.hero-split.split-left {
        flex-direction: column-reverse; /* Foto boven, tekst onder */
    }
    
    .fajaede-hero.hero-split .hero-image-container {
        width: 100%;
        height: 250px;
    }
}

/* ============================================
   SUBPAGINA GRID (Overzichtspagina's)
   ============================================ */

.fajaede-subpages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Automatisch passend */
    gap: 30px;
    margin: 40px 0;
}

.subpage-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
}

.subpage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.subpage-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.subpage-image.fallback-image {
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Fajaede kleuren */
}

.subpage-card:hover .subpage-image {
    transform: scale(1.05);
}

.subpage-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.subpage-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.subpage-content h3 a {
    text-decoration: none;
    color: #2d3748;
}

.read-more-btn {
    margin-top: auto;
    color: #6a11cb;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* ============================================
   DOWNLOADS PAGINA LAYOUT
   ============================================ */

.download-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.download-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #e2e8f0;
}

.download-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: #f7fafc;
}

/* Kleurtjes per type (optioneel) */
.download-icon-wrapper.type-music { background: #e0f2fe; color: #0284c7; }
.download-icon-wrapper.type-video { background: #fce7f3; color: #db2777; }
.download-icon-wrapper.type-document { background: #fef3c7; color: #d97706; }
.download-icon-wrapper.type-software { background: #f3e8ff; color: #7e22ce; }
.download-icon-wrapper.type-pdf { background: #fee2e2; color: #dc2626; }

.download-info h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #2d3748;
}

.download-info p {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.5;
}

.download-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 25px;
}

.download-action {
    margin-top: auto;
}

.btn-download {
    display: block;
    text-align: center;
    background: #f8fafc;
    color: #4a5568;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-download:hover {
    background: #6a11cb;
    color: #fff;
}

/* ============================================
   LIGHTBOX FIXES (Afbeelding vergroten)
   ============================================ */

/* Container van de sluitknop: Forceer positie, achtergrond en zichtbaarheid */
.wp-lightbox-overlay__close,
.wp-block-image__lightbox-close,
button.lightbox-close,
.slb_close,
#slb_close,
.lb-close,
.fslightbox-close {
    position: fixed !important; /* Altijd in beeld, ook bij scrollen */
    top: 20px !important;
    right: 20px !important;
    z-index: 999999 !important; /* Boven alles, inclusief admin bar en header */
    width: 44px !important;     /* Groter klikgebied */
    height: 44px !important;
    background-color: rgba(0, 0, 0, 0.6) !important; /* Donkere achtergrondbol */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff !important; /* Witte rand voor contrast */
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Het kruisje zelf (SVG) styling */
.wp-lightbox-overlay__close svg,
.wp-block-image__lightbox-close svg {
    fill: #ffffff !important; /* Wit kruisje */
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
    background: transparent !important;
}

/* Fallback: Als SVG ontbreekt, maak een CSS kruisje */
.wp-lightbox-overlay__close:empty::before,
.wp-block-image__lightbox-close:empty::before {
    content: '×';
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-family: sans-serif;
    font-weight: bold;
}

/* ============================================
   ACCESSIBILITY FIXES (Seers Cookie Banner)
   ============================================ */

/* Fix contrast voor 'Instellingen' knop (was te licht) */
.seers-cmp-preference-btn {
    color: #2d3748 !important; /* Donkergrijs voor goed contrast */
    background-color: #f8f9fa !important; /* Lichte achtergrond */
    border: 1px solid #cbd5e0 !important; /* Duidelijke rand */
}

.seers-cmp-preference-btn:hover {
    background-color: #e2e8f0 !important;
    color: #1a202c !important;
}

/* Verbeterde positie sluitknop als je ingelogd bent (Admin Bar overlap voorkomen) */
body.admin-bar .wp-lightbox-overlay__close,
body.admin-bar .wp-block-image__lightbox-close,
body.admin-bar button.lightbox-close {
    top: 60px !important; /* Zakt onder de admin bar (32px) */
}

/* ============================================
   SEERS COOKIE BANNER CONTRAST FIXES
   ============================================ */

/* Alles Toestaan (#seers-iagree) - Donker met witte tekst */
#seers-iagree {
    background-color: #1a202c !important;
    color: #ffffff !important;
    border: 2px solid #1a202c !important;
}
#seers-iagree:hover {
    background-color: #2d3748 !important;
}

/* Alles Uitschakelen (#seers-idisagree) - Wit met donkere tekst */
#seers-idisagree {
    background-color: #ffffff !important;
    color: #1a202c !important;
    border: 2px solid #cbd5e0 !important;
}
#seers-idisagree:hover {
    background-color: #f7fafc !important;
    color: #000000 !important;
}
