/* Custom styles for the sports categories carousel */
.category-carousel .swiper-slide {
    text-align: center;
    transition: all 0.3s ease;
}

.category-carousel .swiper-slide:hover {
    transform: translateY(-5px);
}

.category-carousel img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-carousel .swiper-slide:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

.swiper-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.swiper-buttons button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #45e169;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-buttons button:hover {
    background-color: #333;
}

@media (max-width: 767px) {
    .category-carousel img {
        width: 70px;
        height: 70px;
    }
    .category-title {
        font-size: 12px;
    }
}
