:root {
    --primary-color: #e83e8c;
    --secondary-color: #6f42c1;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --navbar-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    line-height: 1.6;
}

/* Fix for navbar dropdown z-index issue */
.navbar {
    z-index: 1030;
    position: relative;
}

.navbar .dropdown-menu {
    z-index: 1031;
}

/* Ensure navbar stays on top of other content */
.navbar,
.navbar * {
    box-sizing: border-box;
}

/* Enhanced Navbar Styling */
.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: var(--navbar-transition);
    backdrop-filter: blur(10px);
}


.navbar-brand {
    font-weight: 700;
    transition: transform 0.2s ease;
    text-decoration: none !important;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-decoration: none !important;
}

.navbar-brand:active,
.navbar-brand:focus,
.navbar-brand:visited {
    text-decoration: none !important;
    outline: none;
    box-shadow: none;
}

/* Navbar brand logo - CSP compliant (no inline styles) */
.navbar-brand-logo {
    max-height: 40px;
    width: auto;
}

/* Navbar logo styling */
.navbar-logo {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Android-Style Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 12px;
    background-color: transparent;
    transition: var(--navbar-transition);
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.15);
}

.navbar-toggler:hover {
    transform: scale(1.08);
    background-color: rgba(232, 62, 140, 0.08);
}

.navbar-toggler:active {
    transform: scale(0.95);
}

/* Android Material Design Hamburger Animation */
.navbar-toggler .fas.fa-bars,
.navbar-toggler-profile-icon {
    font-size: 1.5rem;
    transition: var(--navbar-transition);
    color: var(--primary-color);
}

.navbar-toggler-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
    transition: var(--navbar-transition);
    box-shadow: 0 2px 8px rgba(232, 62, 140, 0.25);
}

.navbar-toggler-profile-img:hover {
    border-color: #d63384;
    box-shadow: 0 4px 12px rgba(232, 62, 140, 0.35);
}

.navbar-toggler[aria-expanded="true"] .fas.fa-bars {
    transform: rotate(90deg) scale(0);
    opacity: 0;
}

.navbar-toggler:not(.has-profile)::before {
    content: '\f00d';
    /* FontAwesome times/close icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-color);
    transform: rotate(-90deg) scale(0);
    opacity: 0;
    transition: var(--navbar-transition);
}

.navbar-toggler:not(.has-profile)[aria-expanded="true"]::before {
    transform: rotate(0deg) scale(1);
    opacity: 1;
}

.navbar-toggler.has-profile {
    border: none !important;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    background: transparent !important;
}

.navbar-toggler.has-profile::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%) scale(0);
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--navbar-transition);
}

.navbar-toggler.has-profile[aria-expanded="true"]::after {
    opacity: 1;
    transform: translateX(50%) scale(1);
}

.navbar-toggler.has-profile[aria-expanded="true"] .navbar-toggler-profile-img {
    border-color: #d63384;
    box-shadow: 0 4px 12px rgba(232, 62, 140, 0.4);
}

/* Enhanced Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--navbar-transition);
    position: relative;
    margin: 0 2px;
    text-decoration: none !important;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(232, 62, 140, 0.1);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:visited {
    text-decoration: none !important;
}

.navbar-nav .nav-link.active {
    background-color: rgba(232, 62, 140, 0.15);
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

/* Enhanced Dropdown Styling */
.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
    backdrop-filter: blur(10px);
    animation: dropdownSlideIn 250ms cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 10px 20px;
    transition: var(--navbar-transition);
    border-radius: 6px;
    margin: 2px 8px;
}

.dropdown-item:hover {
    background-color: rgba(232, 62, 140, 0.1);
    transform: translateX(4px);
}

/* Enhanced Search Form */
.navbar .input-group {
    max-width: 280px;
    transition: var(--navbar-transition);
}

.navbar .form-control {
    border-radius: 8px 0 0 8px;
    border: 2px solid #e9ecef;
    transition: var(--navbar-transition);
}

.navbar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
    transform: scale(1.02);
}

.navbar .btn-outline-primary {
    border-radius: 0 8px 8px 0;
    border: 2px solid var(--primary-color);
    transition: var(--navbar-transition);
}

.navbar .btn-outline-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(232, 62, 140, 0.3);
}

/* Enhanced Credit Balance Badge */
.nav-link .badge {
    transition: var(--navbar-transition);
    font-size: 0.75rem;
    padding: 0.375em 0.75em;
}

.nav-link:hover .badge {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile filter toggle button */
.mobile-filter-toggle {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.filter-toggle-btn {
    background: transparent !important;
    border: 1px solid #1877f2 !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    color: #1877f2 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    outline: none !important;
}

.filter-toggle-btn:active,
.filter-toggle-btn:hover {
    background: transparent !important;
    opacity: 0.8;
}

.filter-toggle-btn i {
    font-size: 1.3rem;
    margin: 0 !important;
    color: #1877f2 !important;
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover i {
    color: #1877f2 !important;
    transform: scale(1.1);
}

/* Enhanced Notification Bell with Fixed Mobile Badge Positioning */
.nav-item .position-relative {
    position: relative !important;
}

.notification-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    line-height: 1;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: var(--navbar-transition);
}

.nav-link:hover .notification-badge {
    transform: scale(1.1);
    animation: bellPulse 0.6s ease-in-out;
}

@keyframes bellPulse {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* Bell Icon Animation */
.fa-bell {
    transition: var(--navbar-transition);
}

.nav-link:hover .fa-bell {
    animation: bellRing 0.6s ease-in-out;
}

@keyframes bellRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--navbar-transition);
}

.btn-primary:hover {
    background-color: #d63384;
    border-color: #d63384;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 62, 140, 0.3);
}

.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
}

.alert {
    border-radius: 10px;
    border: none;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 991.98px) {

    /* Mobile Navbar Collapse Animation */
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 12px;
        padding: 16px;
        animation: mobileMenuSlideIn 0.3s ease-out;
        position: fixed !important;
        top: 60px !important;
        left: 15px !important;
        right: 15px !important;
        width: calc(100vw - 30px) !important;
        max-width: 400px !important;
        z-index: 1040 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        max-height: 70vh;
        overflow-y: auto;
    }

    @keyframes mobileMenuSlideIn {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Mobile Navigation Links */
    .navbar-nav .nav-link {
        padding: 12px 16px;
        margin: 4px 0;
        border-radius: 8px;
        width: 100%;
        display: block;
    }

    /* Mobile Search Form */
    .navbar .d-flex {
        margin: 16px 0;
    }

    .navbar .input-group {
        max-width: 100%;
    }

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #e9ecef;
        margin-top: 8px;
        animation: none;
        width: 100%;
        border-radius: 8px;
    }

    /* Enhanced mobile dropdown visibility */
    .dropdown-menu.show {
        display: block !important;
    }

    /* Mobile dropdown toggle styling */
    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
    }

    /* Better mobile dropdown item spacing */
    .dropdown-item {
        padding: 12px 16px;
        white-space: normal;
        word-wrap: break-word;
    }

    /* Mobile notification dropdown improvements */
    .dropdown-menu .dropdown-item.d-flex {
        display: flex !important;
        align-items: flex-start;
    }

    .dropdown-menu .dropdown-item .flex-grow-1 {
        min-width: 0;
        flex: 1;
    }

    /* Ensure proper stacking of mobile elements */
    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-item .nav-link {
        text-align: left;
    }


    /* Mobile navbar brand adjustments */
    .navbar-brand {
        font-size: 1.3rem;
        margin-right: auto;
    }

    /* Fix for mobile dropdown visibility issues */
    .dropdown-menu {
        z-index: 1050 !important;
    }

    /* Ensure proper mobile menu stacking */
    .navbar-collapse {
        position: relative;
        z-index: 1040;
    }

    /* Mobile navigation improvements */
    .navbar-nav .dropdown {
        width: 100%;
    }

    .navbar-nav .dropdown .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: rgba(248, 249, 250, 0.95);
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    /* Mobile-specific notification badge positioning - minimal distance like desktop */
    .navbar-nav .nav-item .notification-badge {
        top: -10px !important;
        right: -10px !important;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        border: 1px solid #fff !important;
    }

    /* Mobile Navbar Layout - Center the brand */
    .navbar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Mobile Action Icons */
    .mobile-action-icons {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
        margin-right: 8px;
    }

    .mobile-search-btn {
        background: transparent !important;
        border: none !important;
        color: #6c757d !important;
        font-size: 1.3rem;
        padding: 10px;
        border-radius: 12px;
        transition: var(--navbar-transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
    }

    .mobile-search-btn:hover,
    .mobile-search-btn:focus {
        background-color: rgba(108, 117, 125, 0.1) !important;
        transform: scale(1.08);
        outline: none !important;
    }

    .mobile-search-btn:active {
        transform: scale(0.95);
    }

    .mobile-notification-dropdown {
        position: relative;
    }

    .mobile-notification-dropdown .navbar-notification-menu {
        position: fixed !important;
        top: 60px !important;
        right: 15px !important;
        left: auto !important;
        width: 320px !important;
        max-width: calc(100vw - 30px) !important;
        z-index: 1050 !important;
        transform: none !important;
        animation: mobileDropdownSlideIn 0.2s ease-out !important;
    }

    @keyframes mobileDropdownSlideIn {
        from {
            opacity: 0;
            transform: translateY(-10px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .mobile-notification-link {
        color: #6c757d !important;
        font-size: 1.3rem;
        padding: 10px;
        border-radius: 12px;
        transition: var(--navbar-transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        position: relative;
    }

    .mobile-notification-link:hover,
    .mobile-notification-link:focus {
        background-color: rgba(108, 117, 125, 0.1) !important;
        transform: scale(1.08);
        text-decoration: none !important;
        outline: none !important;
    }

    .mobile-notification-link:active {
        transform: scale(0.95);
    }

    .mobile-notification-badge {
        position: absolute !important;
        top: -6px !important;
        right: -6px !important;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding: 0;
        line-height: 1;
        border: 1px solid #fff !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        background-color: #dc3545 !important;
        color: white !important;
        font-weight: bold;
    }

    /* Mobile Filter Toggle - Position on left */
    .mobile-filter-toggle {
        order: 1;
        flex: 0 0 auto;
        margin-right: auto;
        margin-bottom: 0;
    }

    /* Center Navbar Brand */
    .navbar-brand {
        order: 2;
        font-size: 1.15rem !important;
        margin: 0;
    }

    /* Mobile Action Icons - Position right of brand */
    .mobile-action-icons {
        order: 3;
    }

    /* Navbar Toggler - Position on right */
    .navbar-toggler {
        order: 4;
        flex: 0 0 auto;
        margin-left: 0;
    }

    /* Navbar Collapse - Full width below */
    .navbar-collapse {
        order: 5;
        flex: 1 0 100%;
    }

    /* Mobile Credit Balance */
    .nav-link .badge {
        font-size: 0.7rem;
        padding: 0.25em 0.5em;
    }

    .filter-toggle-btn {
        border-radius: 8px;
        padding: 10px;
        transition: var(--navbar-transition);
    }

    .filter-toggle-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(232, 62, 140, 0.2);
    }
}

@media (max-width: 576px) {

    /* Extra small devices */
    .navbar-brand {
        font-size: 1rem !important;
    }

    .navbar .container {
        padding: 0 8px;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }

    .navbar-nav .nav-item .notification-badge {
        top: -8px !important;
        right: -8px !important;
        min-width: 14px;
        height: 14px;
        font-size: 9px;
        border: 1px solid #fff !important;
    }
}

/* Small devices (360px width and below) */
@media (max-width: 360px) {
    .navbar-brand .brand-text {
        font-size: 20px !important;
        line-height: 1.2;
    }
    
    .navbar-brand {
        font-size: 0.9rem !important;
    }
    
    .mobile-action-icons {
        gap: 8px;
        margin-right: 4px;
    }
    
    .mobile-search-btn,
    .mobile-notification-link {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        padding: 6px;
    }
    
    .navbar-toggler {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .navbar-toggler-profile-img {
        width: 28px;
        height: 28px;
    }
}

/* Search Modal Styling to match Android App Design */
.search-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.search-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.search-info-card {
    background-color: #f0f7ff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.search-chip {
    background-color: #f1f3f5;
    color: #495057;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 500;
}

.search-chip:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Recent Searches Clear Button */
#clearRecentSearches {
    font-size: 0.75rem;
    transition: color 0.2s ease;
    padding: 0;
    background: none;
    border: none;
}

#clearRecentSearches:hover {
    color: var(--danger-color) !important;
}

#clearRecentSearches i {
    font-size: 0.7rem;
}

.social-item {
    display: flex;
    align-items: center;
    color: #495057;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Real-time Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 10px;
    right: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 1000;
    max-height: 40px;
    overflow: hidden;
    display: none;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f3f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.result-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #eee;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #212529;
}

/* Brand Name Styling */
.navbar-brand .brand-text {
    color: #1877f2;
    font-size: 26px;
    font-weight: bold;
}

/* Search Input Styling */
.search-input-max-width {
    max-width: 180px;
}

.search-input-pointer {
    cursor: pointer;
}

.search-input-full {
    max-width: 180px;
    cursor: pointer;
    background-color: #fff;
}

/* Notification Dropdown Styling */
.notification-dropdown-width {
    width: 36px;
}

/* Profile Image Styling */
.navbar-profile-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    box-sizing: border-box;
}

/* Hidden Form Styling */
.hidden-form {
    display: none;
}

/* Social Media Icon Styling */
.social-instagram {
    color: #E1306C;
    font-size: 1.2em;
}

.social-snapchat {
    color: #FFFC00;
    font-size: 1.2em;
    text-shadow: 0 0 1px #e0ca00;
}

.result-id {
    font-size: 0.8rem;
    color: #868e96;
}

/* Navbar Notification Dropdown Styles */
.navbar-notification-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.navbar-notification-icon i.fas {
    font-size: 0.6rem;
}

.navbar-notification-avatar {
    width: 20px;
    height: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.navbar-notification-item {
    white-space: normal;
}

.navbar-notification-text {
    line-height: 1.3;
}

.navbar-notification-time {
    font-size: 0.7rem;
}

.navbar-notification-form-wrapper {
    min-height: 100%;
}

/* Navbar Logo Sizing */
.navbar-brand img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-width: 35px;
        max-height: 35px;
    }
}

/* Responsive Notification Dropdown Width */
.navbar-notification-menu {
    width: 320px;
    max-width: 100vw;
    max-height: 80vh;
    overflow-y: auto;
}

@media (min-width: 576px) {
    .navbar-notification-menu {
        width: 360px;
    }
}

@media (min-width: 992px) {
    .navbar-notification-menu {
        width: 400px;
    }
    
    /* Desktop Navbar Enhancements */
    .navbar {
        min-height: 65px;
    }
    
    .navbar .container {
        max-width: 1200px;
    }
    
    /* Desktop Search Form Sizing */
    .navbar .input-group {
        max-width: 400px;
    }
    
    .search-input-max-width {
        max-width: 280px;
    }
    
    .search-input-full {
        max-width: 280px;
    }
    
    /* Desktop Navigation Links Spacing */
    .navbar-nav .nav-link {
        padding: 10px 18px;
        margin: 0 4px;
        font-size: 0.95rem;
    }
    
    /* Desktop Profile Image Sizing */
    .navbar-profile-img {
        width: 28px;
        height: 28px;
    }
    
    /* Desktop Notification Badge Sizing */
    .notification-badge {
        min-width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* Large Desktop Screens (1200px and up) */
@media (min-width: 1200px) {
    .navbar .container {
        max-width: 1400px;
    }
    
    .navbar .input-group {
        max-width: 500px;
    }
    
    .search-input-max-width {
        max-width: 350px;
    }
    
    .search-input-full {
        max-width: 350px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .navbar {
        min-height: 55px;
    }
}

/* Extra Large Desktop Screens (1400px and up) */
@media (min-width: 1400px) {
    .navbar .container {
        max-width: 1600px;
    }
    
    .navbar .input-group {
        max-width: 600px;
    }
    
    .search-input-max-width {
        max-width: 400px;
    }
    
    .search-input-full {
        max-width: 400px;
    }
    
    .navbar {
        min-height: 75px;
    }
}