.slider {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    height: auto;
}
.slides {
    display: flex;
    transition: transform 0.5s ease; /* Smooth transition */
    width: 100%;
    height: 65vh;
}
.slide {
    min-width: 100%; /* Each slide takes full width */
    height: 100%; /* Full height of the slider */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}
/* .controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
} */
/* .btn {
    margin: 0 5px;
} */
#prev,#next {
    border: none;
    outline: none;
    font-size: 30px;
    color: var(--medium_light_black);
}
#prev {
    position: absolute;
    top: 50%;
    left: 58px;
}
#next {
    position: absolute;
    top: 50%;
    right: 58px;
}
.slider .controls button i {
   font-weight: bold !important;
}
.disabled {
    opacity: 0.5; /* Make disabled buttons look inactive */
    pointer-events: none; /* Prevent clicks on disabled buttons */
}
