/**
 * ================================================
 * HEADER COMPONENT
 * ================================================
 * Navbar, Logo, Navigation, Theme Toggle, Language Switcher
 * Her sayfada kullanılır - Tutarlı tasarım
 */

/* ===== HEADER BASE ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #2B542C;
    /* Global Green */
    border-bottom: 1px solid #2B542C;
}

/* GLOBAL HEADER TEXT & ICONS (White on Green) */
.header .nav-link {
    color: #ffffff !important;
}

.header .nav-link i,
.header .nav-link .text-primary {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: rgba(255, 255, 255, 0.8) !important;
}

.header .btn-icon,
.header .lang-switch,
.header .search-toggle,
.header .user-toggle-btn {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

.header .btn-icon i,
.header .lang-switch i,
.header .search-toggle i,
.header .user-toggle-btn i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
}

.header .btn-icon:hover,
.header .lang-switch:hover,
.header .search-toggle:hover,
.header .user-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
}

/* .header.scrolled handled via JS and transparent class */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 72px;
    }
}

/* ===== LOGO (40x40px Standard) ===== */
.logo {
    height: 40px !important;
    width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.logo:hover {
    background: var(--color-bg-tertiary) !important;
    border-color: var(--color-border) !important;
}

.logo.scrolled {
    transition: none !important;
}

.logo img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: var(--radius-lg) !important;
}

/* ===== NAVIGATION ===== */
.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0.25rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    color: var(--color-text-secondary);
}

.nav-link i {
    font-size: 1.25rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* ===== HEADER ACTIONS (Right Side Buttons) ===== */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Random File Button, Theme Toggle */
/* .header-actions .btn-icon inherits from global.css */

/* ===== LANGUAGE SWITCHER DROPDOWN ===== */
.lang-dropdown-wrapper {
    position: relative;
    z-index: 1001;
}

.lang-switch {
    height: 40px !important;
    width: 40px !important;
    min-height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid var(--color-border) !important;
    background: var(--color-bg) !important;
    border-radius: var(--radius-lg) !important;
    color: var(--color-text-secondary) !important;
    cursor: pointer;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.lang-switch:hover,
.lang-switch[aria-expanded="true"] {
    background: var(--color-bg-tertiary) !important;
    border-color: var(--color-border) !important;
    color: var(--color-text-secondary) !important;
}

.lang-switch .lang-flag {
    width: 22px !important;
    height: 14px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    object-fit: cover !important;
    border-radius: 2px !important;
    display: block !important;
    margin: 0 auto !important;
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 10px;
}

/* Language Dropdown Menu */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1002;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-header {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    font-weight: 700;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
}

.lang-item:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
}

.lang-item.active {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
    font-weight: 600;
}

/* ===== SEARCH DROPDOWN ===== */
.search-dropdown-wrapper {
    position: relative;
    z-index: 1001;
}

.search-toggle:hover,
.search-toggle[aria-expanded="true"] {
    background: var(--color-bg-tertiary) !important;
    border-color: var(--color-border) !important;
    color: var(--color-text-secondary) !important;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1000;
}

.search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-dropdown-header {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    font-weight: 700;
}

.search-dropdown-body {
    padding: 1rem;
}

.search-dropdown-form {
    display: flex;
    gap: 8px;
}

.search-input-group {
    position: relative;
    flex: 1;
}

.search-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    font-size: 1rem;
    z-index: 5;
    pointer-events: none;
}

.search-dropdown-input {
    width: 100%;
    height: 44px;
    padding: 0 1rem 0 2.75rem !important;
    /* Increased left padding to prevent overlap */
    background: var(--color-bg-tertiary) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-lg) !important;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: all 0.2s;
}

.search-dropdown-input:focus {
    outline: none;
    border-color: var(--color-primary) !important;
    background: var(--color-bg) !important;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05) !important;
}

.search-dropdown-btn {
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--color-primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    cursor: pointer;
    transition: all 0.2s;
}

.search-dropdown-btn i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
    opacity: 1 !important;
}

.search-dropdown-btn:hover {
    background: var(--color-primary-dark) !important;
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .search-dropdown {
        position: fixed;
        top: 64px;
        left: 1rem;
        right: 1rem;
        width: auto;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
}

/* ===== MOBILE SEARCH FORM (Inside Mobile Nav) ===== */
.mobile-search-form-wrapper {
    padding: 0 0.25rem;
    margin-bottom: 0.5rem;
}

.mobile-search-form {
    display: flex;
    gap: 0;
    position: relative;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.mobile-search-form:focus-within {
    border-color: var(--color-primary);
    background: var(--color-bg);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.mobile-search-input {
    flex: 1;
    height: 48px;
    border: none !important;
    background: transparent !important;
    padding: 0 1.25rem;
    font-size: 1rem;
    color: var(--color-text);
    outline: none !important;
}

.mobile-search-submit {
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    color: var(--color-primary);
    font-size: 1.1rem;
}

html.dark .mobile-search-form {
    background: #111;
    border-color: #222;
}

html.dark .mobile-search-submit {
    color: #ffffff;
}


/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--color-text);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ===== TRANSPARENT HEADER (For Home Page) ===== */
.header-transparent {
    background: transparent !important;
    border-bottom: none !important;

}

.header-transparent .header-inner {
    height: 72px !important;
}

.header-transparent .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
    color: #ffffff !important;
}

/* Transparent header - scrolled state */
.header-transparent.scrolled {
    background: #2B542C !important;
    /* Footer-like Excel Green */
}

.header-transparent.scrolled .nav-link {
    color: #ffffff !important;
}

.header-transparent.scrolled .nav-link:hover,
.header-transparent.scrolled .nav-link.active {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Hero state: Logo & Buttons styling */
.header-transparent:not(.scrolled) .logo,
.header-transparent:not(.scrolled) .btn-icon,
.header-transparent:not(.scrolled) .lang-switch {
    border-color: #e0e0e0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    /* Ensure no shadows resemble borders/bg */
}

/* Scrolled State: Logo & Buttons styling - Transparent on Green */
.header-transparent.scrolled .logo,
.header-transparent.scrolled .btn-icon,
.header-transparent.scrolled .lang-switch {
    background: transparent !important;
    border-color: #e0e0e0 !important;
    box-shadow: none !important;
}

.header-transparent:not(.scrolled) .logo:hover,
.header-transparent:not(.scrolled) .btn-icon:hover,
.header-transparent:not(.scrolled) .lang-switch:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #e0e0e0 !important;
    color: #ffffff !important;
}

/* Force white icons on hero */
.header-transparent:not(.scrolled) .btn-icon i,
.header-transparent:not(.scrolled) #theme-icon,
.header-transparent:not(.scrolled) .mobile-menu-btn i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
    opacity: 1 !important;
}

.header-transparent:not(.scrolled) .btn-icon:hover i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
}

/* Nav link icons - transparent header */
.header-transparent:not(.scrolled) .nav-link {
    color: #ffffff !important;
}

.header-transparent:not(.scrolled) .nav-link i {
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
}

/* Nav link icons - scrolled header */
.header-transparent.scrolled .nav-link i {
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: rgba(255, 255, 255, 0.5) !important;
}

/* Force white icons on scrolled state for actions too, to match dark bg */
.header-transparent.scrolled .btn-icon i,
.header-transparent.scrolled #theme-icon,
.header-transparent.scrolled .mobile-menu-btn i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
    opacity: 1 !important;
}

/* ===== DARK MODE HEADER STYLES ===== */
html.dark .search-dropdown {
    background: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

html.dark .search-dropdown-header {
    background: #111111;
    border-bottom-color: #222222;
}

html.dark .search-dropdown-input {
    background: #1a1a1a;
    border-color: #333333;
    color: #ffffff;
}

html.dark .search-dropdown-btn {
    background: var(--color-white) !important;
    color: var(--color-bg) !important;
}

html.dark .search-dropdown-btn i {
    color: var(--color-bg) !important;
    --fa-primary-color: var(--color-bg) !important;
    --fa-secondary-color: var(--color-bg) !important;
}

html.dark .search-dropdown-btn:hover {
    background: var(--color-gray-100) !important;
}

html.dark .header-transparent:not(.scrolled) .btn-icon,
html.dark .header-transparent:not(.scrolled) .lang-switch,
html.dark .header-transparent:not(.scrolled) .logo {
    backdrop-filter: none !important;
    background: #111111 !important;
    border-color: #333333 !important;
}

html.dark .header-transparent:not(.scrolled) .nav-link i {
    --fa-secondary-color: #444444 !important;
}

html.dark .header-transparent.scrolled .nav-link i {
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #444444 !important;
}

/* ===== MEGA MENU ===== */
.mega-menu-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mega-menu-item:hover {
    background: var(--color-bg-secondary);
    border-color: var(--color-border);
    transform: translateY(-2px);
}

.mm-icon {
    width: 40px;
    height: 40px;
    background: rgba(33, 115, 70, 0.1);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.mega-menu-item:hover .mm-icon {
    background: var(--color-primary);
    color: #ffffff;
}

.mm-content {
    flex: 1;
}

.mm-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.mm-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.mega-menu-item.view-all {
    background: rgba(33, 115, 70, 0.05);
    border: 1px dashed var(--color-primary);
}

.mega-menu-item.view-all:hover {
    background: var(--color-primary);
    border-style: solid;
}

.mega-menu-item.view-all .mm-title {
    color: var(--color-primary);
}

.mega-menu-item.view-all:hover .mm-title {
    color: #ffffff;
}

html.dark .mega-menu-item:hover {
    background: var(--color-bg-tertiary);
}


/* ===== USER DROPDOWN (Strictly Standardized) ===== */
.user-dropdown-wrapper {
    position: relative;
    z-index: 1001;
    margin-right: 0;
}

/* Base button style matching .lang-switch EXACTLY */
.user-toggle-btn {
    height: 40px !important;
    width: 40px !important;
    min-height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--color-bg) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-lg) !important;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-text-secondary);
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.user-toggle-btn:hover,
.user-toggle-btn[aria-expanded="true"] {
    background: var(--color-bg-tertiary) !important;
    border-color: var(--color-border) !important;
    color: var(--color-text);
}

.user-avatar-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
}

/* INITIALS AVATAR - Google Style */
.user-avatar-initials {
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.user-avatar-initials.large {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border-radius: 50%;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dropdown styling matching .lang-dropdown EXACTLY */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1002;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    background: var(--color-bg-secondary);
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.user-dropdown-header-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.user-dropdown-header .name {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-header .email {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.user-dropdown-item:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
}

.user-dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0;
    /* Boşluklar tamamen kaldırıldı */
}

.user-dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* Auth Buttons (Guest) */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 1rem;
}

.btn-auth-login {
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-auth-login:hover {
    color: var(--color-primary);
}

.btn-auth-register {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-auth-register:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 124, 65, 0.2);
}

/* Transparent Header Adjustments */
.header-transparent:not(.scrolled) .user-toggle-btn {
    background: transparent !important;
    border-color: #e0e0e0 !important;
}

.header-transparent:not(.scrolled) .user-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.header-transparent:not(.scrolled) .user-name-text {
    color: #ffffff !important;
}

.header-transparent:not(.scrolled) .user-toggle-btn i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
    opacity: 1 !important;
}

/* Scrolled State Fix for User Toggle Button */
.header-transparent.scrolled .user-toggle-btn {
    background: transparent !important;
    border-color: #e0e0e0 !important;
    /* Diğer butonlarla AYNI renk */
    color: #ffffff !important;
}

.header-transparent.scrolled .user-toggle-btn i {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
}

.header-transparent.scrolled .user-toggle-btn:hover {
    background: transparent !important;
    /* Diğerlerinde hover yoksa bunda da olmasın */
    border-color: #e0e0e0 !important;
}


/* GLOBAL FIXES (Applied to all pages) */
.header {
    background-color: #2B542C !important;
    border-color: #2B542C !important;
}

/* Fix Logo Hover Globally */
.header .logo:hover {
    background: transparent !important;
    border-color: transparent !important;
    opacity: 0.8;
}

/* Fix Nav Icons Globally */
.header .nav-link i,
.header .nav-link .fad {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
    opacity: 1 !important;
}

/* Ensure Text is White */
.header .nav-link {
    color: #ffffff !important;
}

.header-transparent.scrolled .logo:hover {
    background: transparent !important;
    border-color: transparent !important;
    opacity: 0.8;
}

/* FIX: Navbar Icons on Green Header */
.header-transparent.scrolled .nav-link i,
.header-transparent.scrolled .nav-link .fad {
    color: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
    opacity: 1 !important;
}