@use '../../colors';

.bz-tab-block {
    &__buttons {
        width: 100%;
        padding-bottom: 12px;
        margin-bottom: 12px;
        display: flex;
        justify-content: space-between;
        gap: 20px;

        overflow-x: auto;
        overflow: -moz-scrollbars-vertical; 
        overflow-y: hidden;
        white-space: nowrap;
    }
    &__button {
        padding: 16px;
        border-radius: 0.5rem;
        background-color: colors.$blue-10;
        text-align: center;
        display: flex;
        flex: 1;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
        border: 3px solid transparent;
        white-space: nowrap;
        color: colors.$neutral-10;
        &:hover {
            text-decoration: none;
            background-color: colors.$blue-20;
            border-color: colors.$blue-100;
        }
        &--active {
            background-color: colors.$white;
            border-color: colors.$blue-100;
        }
        
    }

    /* Horizontal scroll ----------------- */
    ::-webkit-scrollbar {
    border-radius: 75px;
    height: 10px;
    width: 15px;
    border: 1px solid #d5d5d5;
    }

    ::-webkit-scrollbar-track {
    border-radius: 100px;
    background: colors.$pink-20;
    border-radius: 100px;
    }

    ::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: colors.$pink-100;
    }
}