.tab {
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    padding: .75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--rich-black);
    border: none;
    border-radius: 0;
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.tab:hover {
    background: rgba(0, 0, 0, 0.05);
}

.tab.active {
    border-bottom: 2px solid #000;
}


