.custom-gallery {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 400px; /* Chiều cao tối đa cho gallery */
}

.custom-gallery-item {
    flex: 1 0 25%; /* Mỗi hàng 4 hình ảnh */
    padding: 5px;
    box-sizing: border-box;
}

.custom-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Đảm bảo hình ảnh đầy đủ không bị méo */
}

.custom-gallery-nav {
    text-align: center;
    margin-top: 10px;
}
