﻿.tab-wrapper {
    width: 100%;
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    margin-bottom: 23px;
    justify-content: center;
}

    .tab-header::-webkit-scrollbar {
        display: none;
    }

.tab-button {
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    padding: 0px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: .2s ease;
}

    .tab-button:hover {
        color: #111827;
    }

    .tab-button.active {
        color: #2563eb;
    }

        .tab-button.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 2px;
            background: #2563eb;
            border-radius: 999px;
        }

.tab-content {
    width: 100%;
}
