﻿/* Container chính */
.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Danh sách cuộn ngang */
.scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px; /* Khoảng cách giữa các thẻ */
    padding-bottom: 10px;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
}

    .scrolling-wrapper::-webkit-scrollbar {
        display: none;
    }

/* Kích thước thẻ cố định */
.card-item {
    flex: 0 0 auto;
    width: 250px; /* Độ rộng thẻ giống ảnh mẫu */
}

/* Nút điều hướng (Góc trên phải) */
.btn-nav-custom {
    width: 30px;
    height: 30px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #666;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
}

    .btn-nav-custom:hover {
        background-color: #037a66; /* Màu xanh chủ đạo */
        color: white;
        border-color: #037a66;
    }
