/* Navigation Styles */
.nav-themed {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 3px solid var(--gcb-amber);
    position: relative;
    z-index: 1000;
    min-height: 70px;
}

.text-white-important {
    color: white !important;
}

.img-invert {
    filter: brightness(0) invert(1);
}

.link-transition {
    transition: all 0.3s ease;
}

.nav-pill {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px !important;
}

.avatar-container.avatar-gradient {
    width: 32px;
    height: 32px;
    background: linear-gradient(
        135deg,
        var(--gcb-amber) 0%,
        var(--gcb-primary-gold-dark) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-14 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

.dropdown-custom {
    min-width: 220px;
    border-radius: 12px;
    margin-top: 10px;
    background: white;
}

.modal-header-themed {
    background: linear-gradient(
        135deg,
        var(--gcb-amber) 0%,
        var(--gcb-primary-gold-dark) 100%
    );
    border: none;
}

.modal-body-padded {
    padding: 30px;
}

.support-tile {
    background: rgba(253, 184, 19, 0.05);
    border: 1px solid rgba(253, 184, 19, 0.2);
}

.support-icon {
    width: 40px;
    height: 40px;
    background: var(--gcb-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Link Hover Effects */
.navbar-nav .nav-link:hover {
    background: rgba(255, 197, 42, 0.1);
    border-radius: 8px;
    transform: translateY(-1px);
}

/* Dropdown Fixes and Hover Effects */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 9999 !important;
    display: none;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(
        135deg,
        rgba(253, 184, 19, 0.1) 0%,
        rgba(253, 184, 19, 0.05) 100%
    );
    padding-left: 20px;
}

/* Remove default Bootstrap dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Support Modal - Force proper centering */
/* #supportModal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-right: 0 !important;
}

#supportModal .modal-dialog {
    max-width: 600px;
    margin: auto;
}

#supportModal .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 1rem);
}

#supportModal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin: auto;
} */

/* Override Bootstrap's display: block */
.modal.fade.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Notification Badge Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.badge.bg-danger {
    animation: pulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 20px !important;
        border-radius: 8px;
    }
}
