.bo-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 14px;
}

.bo-tab {
    border: 1px solid #ccc;
    border-bottom: none;
    background: #eee;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.bo-tab.active {
    background: #fff;
    color: #307d7a;
    font-weight: 600;
}

.bo-tab-content {
    display: none;
}

.bo-tab-content.active {
    display: block;
}