﻿.tabbar {
    display: flex;
    gap: 4px;
    padding: 6px 8px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
    overflow: auto;
}

.tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    white-space: nowrap;
}

    .tab.active {
        background: #e0f2fe;
        border-bottom-color: #e0f2fe;
    }

.tab-title {
    font-weight: 700;
}

.tab-close {
    font-weight: 900;
    opacity: .7;
}

    .tab-close:hover {
        opacity: 1;
    }

.tabcontent {
    padding: 12px;
}

.tab-empty {
    color: #64748b;
    padding: 20px;
}
