﻿body {
    /* Government Style - Clean, No Background, Visible Arrows */
    #myCarousel

{
    width: 100%;
    background: transparent;
}

#myCarousel .carousel-item img {
    width: 100%;
    height: auto; /* Ensures no cutting */
    display: block;
}

/* High Visibility Arrows */
.carousel-control-prev, .carousel-control-next {
    width: 7%;
    cursor: pointer;
    z-index: 10; /* Ensure buttons are on top */
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8)); /* Visible on light/dark images */
}

/* Government Style - Clean, No Background */

#myCarousel {
    width: 100%;
    background: transparent;
    position: relative;
}

    #myCarousel .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
    }

/* High Visibility Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 7%;
    cursor: pointer;
    z-index: 9999;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8));
}

/* Dots */
.custom-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 9999;
}

    .custom-slider-dots button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #57e7f7;
        opacity: 1;
        padding: 0;
        cursor: pointer;
    }

        .custom-slider-dots button.active {
            background: #27d7ea;
        }
}
