/* Bet Type Tabs Component */
.bet-type-tabs {
    margin-bottom: 24px;
}

.bet-type-tabs__container {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #F9FAFB;
    border-radius: 8px;
    overflow-x: auto;
}

.bet-type-tabs__tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    min-width: 120px;
}

.bet-type-tabs__tab:hover {
    background: #FFFFFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.bet-type-tabs__tab--active {
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.bet-type-tabs__tab--active:hover {
    background: #FFFFFF;
}

.bet-type-tabs__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}

.bet-type-tabs__tab--active .bet-type-tabs__icon {
    color: #000000;
}

.bet-type-tabs__label {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
}

.bet-type-tabs__tab--active .bet-type-tabs__label {
    color: #000000;
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .bet-type-tabs__container {
        gap: 2px;
        padding: 3px;
    }
    
    .bet-type-tabs__tab {
        padding: 10px 12px;
        gap: 6px;
        min-width: 100px;
    }
    
    .bet-type-tabs__icon {
        width: 16px;
        height: 16px;
    }
    
    .bet-type-tabs__label {
        font-size: 12px;
    }
}

/* For 2 tabs */
.bet-type-tabs__container:has(.bet-type-tabs__tab:nth-child(2):last-child) .bet-type-tabs__tab {
    flex: 1;
}

/* For 3 tabs */
.bet-type-tabs__container:has(.bet-type-tabs__tab:nth-child(3):last-child) .bet-type-tabs__tab {
    flex: 1;
}

/* For 4 tabs (NFL with win totals) */
.bet-type-tabs__container:has(.bet-type-tabs__tab:nth-child(4):last-child) .bet-type-tabs__tab {
    flex: 1;
    min-width: 90px;
}

@media (max-width: 768px) {
    .bet-type-tabs__container:has(.bet-type-tabs__tab:nth-child(4):last-child) .bet-type-tabs__tab {
        min-width: 75px;
    }
} 