.tab-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 16px 0;
}

.tab-btn-group {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 4px;
}

.tab-btn {
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background: #2563eb;
    color: #fff;
}