  /* Grid Carousel Styles */
#GridCarousel {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-container {
    width: 100%; /* Full width of the screen */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content; /* Allow the track to expand beyond the container */
}

.carousel-item {
    flex: 0 0 320px; /* Fixed width for each item */
    margin-right: 20px; /* Spacing between items */
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    border: none; /* Remove any borders */
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadows */
}