.tab-navigation {
    background: #1e293b;
    color: white;
    width: 100%;
    border-bottom: 1px solid #334155;
}

.tab-navigation .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: none;
    scrollbar-width: none;
}

.tab-navigation .nav-tabs::-webkit-scrollbar {
    display: none;
}

.tab-navigation .nav-link {
    border: none;
    color: #94a3b8;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.tab-navigation .nav-link:hover {
    color: #e2e8f0;
}

.tab-navigation .nav-link.active {
    color: #ffffff;
    background-color: transparent;
    border-bottom: 2px solid #ffffff;
    font-weight: 600;
}
