/* Sports Button Styles */
.sports-button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    max-width: 100%;
    overflow-x: auto;
}

.sport-btn {
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    min-width: 120px;
    outline: none;
}

.sport-btn:hover {
    background-color: #f2f2f2;
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.sport-btn.active {
    background-color: #45e169;
    color: white;
    border-color: #45e169;
    box-shadow: 0 2px 10px rgba(69, 225, 105, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
    .sports-button-container {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
    }
    
    .sport-btn {
        min-width: auto;
        white-space: nowrap;
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .sports-button-container::-webkit-scrollbar {
        height: 4px;
    }
    
    .sports-button-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .sports-button-container::-webkit-scrollbar-thumb {
        background: #45e169;
        border-radius: 10px;
    }
}
