/* Slider (Carousel) Container */
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Strict frame bounding */
    border-radius: 12px;
}

/* Slider Track using Flex to place images side-by-side */
.slider-track {
    display: flex !important;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.slider-track::-webkit-scrollbar {
    display: none;
}

/* Slide image strictly confined within the frame height */
.slider-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
    scroll-snap-align: start;
}

/* Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: none;
    /* Interactive handler applies */
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-dot:hover {
    background-color: rgba(57, 255, 20, 0.5);
}

.slider-dot.active {
    background-color: #39FF14;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}