.ez-tab-header{
    display: flex;
    flex-direction: row;  
}

.ez-tab-header-item {
    background-color: var(--tab-item-deactive-color);
    padding: 15px 45px;    
    border: 0;
    color: var(--foreground);
    font-size: 18px;
    cursor: pointer;
    pointer-events: initial;
    opacity: 1;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ez-tab-header-item.sm{
    padding: 10px 25px;
    font-size: 15px;
}

.ez-tab-header-item.xs{
    padding: 5px 20px;
    font-size: 12px;
}

.ez-tab-header-item.disabled{
    opacity: 0.5;
    cursor: none;
    pointer-events: none;
}

.ez-tab-header-item.active{
    background-color: var(--brand-bg-color);
    color: var(--invert-text-color);
}