/* Navigation - Main tabs and sub-tabs */

.nav-section {
    background: transparent;
    padding: 0rem 0;
    border-bottom: none;
}

.nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 0rem;
    width: 100%;
}

.main-tabs-container {
    border: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
}

/* Main Navigation Tabs */
.main-nav-tabs {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 10px;
    background:  #f8fafc;
    padding: 0.5rem 3rem 1.5rem;
    box-shadow: 0 0px 0px rgba(0,0,0,0.05);
}

.main-nav-tabs .nav-link {
    color: #6b7280;
    border: 2px solid  #e5e7eb;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    background: #E0F2FE;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-decoration: none !important;
}

.main-nav-tabs .nav-link:hover {
    color: #295e84;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 94, 132, 0.15);
    border-color: #cbd5e1;
    text-decoration: none;
}

.main-nav-tabs .nav-link.active {
    color: white;
    background: linear-gradient(135deg, #295e84 0%, #1e4a66 100%);
    font-weight: 600;
    border-color: #295e84;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(41, 94, 132, 0.25);
}

/* Sub Navigation Tabs */
.subtabs-container {
    border: none;
    margin-bottom: 1rem;
}

.sub-nav-tabs {
    border-bottom: none;
    margin-bottom: 1rem;
    padding: 0rem 0.25rem 0.25rem;
    background: transparent;
}

.sub-nav-tabs .nav-link {
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.8125rem;
    padding: 0.4rem 0.9rem;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    transition: all 0.2s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    text-decoration: none !important;
}

.sub-nav-tabs .nav-link:hover {
    color: #475569;
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    text-decoration: none;
}

.sub-nav-tabs .nav-link.active {
    color: #295e84;
    background: #f0f7ff;
    border-color: #295e84;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(41, 94, 132, 0.15);
}
