/* Unified Navigation Styles for All Templates */

/* Navigation Pills Container */
.nav-pills {
    display: flex;
    gap: 5px;
    background: rgba(15, 18, 60, 0.6);
    border: 1px solid rgba(53, 67, 240, 0.2);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    flex-shrink: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-pills::-webkit-scrollbar {
    display: none;
}

body.light-theme .nav-pills {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
}

/* Individual Navigation Pills - Consistent 65x65px size */
.nav-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 65px !important;
    height: 65px !important;
    text-align: center;
    justify-content: center;
    background: transparent;
    border: none;
}

.nav-pill:hover {
    background: rgba(53, 67, 240, 0.1);
    color: #e2e8f0;
}

.light-theme .nav-pill:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.nav-pill.active {
    background-color: #3543F0 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(53, 67, 240, 0.2);
}

.nav-pill svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-pill-text {
    line-height: 1.5;
    white-space: nowrap;
    font-size: 11px;
}

/* Remove any tier testing elements */
.tier-testing {
    display: none !important;
}

.tier-buttons {
    display: none !important;
}

.tier-btn {
    display: none !important;
}

/* Ensure consistent header height across all templates */
.header {
    min-height: 89px !important;
    max-height: 89px !important;
    height: 89px !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    gap: 20px;
    padding: 0 12px;
    height: 100%;
}

/* Ensure logo doesn't affect header height */
.logo {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Show all nav items but allow horizontal scroll if needed */
.nav-pills {
    flex-wrap: nowrap !important;
}

/* Mobile navigation - show first 4 items + hamburger */
.nav-fab {
    display: none;
}

@media (max-width: 768px) {
    /* Ensure nav pills container stays visible */
    .nav-pills {
        display: flex !important;
    }
    
    /* Show first 4 nav items */
    .nav-pill:nth-child(n+5) {
        display: none !important;
    }
    
    /* Show hamburger menu */
    .nav-fab {
        display: flex !important;
    }
}

/* Remove tier toggle specific styles */
.tier-toggle {
    display: none !important;
}

.tier-option {
    display: none !important;
}