﻿.ob__segment-control {
    display: flex;
    border-radius: 8px;
    /* justify-content: space-around; */
    margin-bottom: 10px;
    color: #333839;
    background: #EBEFF1;
    width: max-content;
    font-family: "Ubuntu";
    font-weight: 400;
}

.ob__segment-item {
    padding: 8px 16px;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .ob__segment-item.ob__active {
        background-color: #e0e0e0;
        color: #FFFFFF;
        background: #008F91;
        border-radius: 8px !important;
    }

.ob__segment-panel {
    display: none;
    padding: 20px;
}

    .ob__segment-panel.ob__active {
        display: block;
    }

.ob__segment-control button.ob__segment-item {
    border-radius: 8px;
}

    .ob__segment-control button.ob__segment-item:focus, .ob__segment-control button.ob__segment-item:focus-visible {
        outline: none;
    }

button.ob__segment-item:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 1px solid #D1D4D7;
}

button.ob__segment-item:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid #D1D4D7;
}
