/* General Styles for Slider Controls */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    padding: 0;
    color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 9998;
    background-color: transparent;
    background-image: url('/assets/images/slider-controls.png');
    background-position: center center;
    background-repeat: no-repeat;
    width: 64px; /* Default width */
    height: 121px; /* Default height */
    opacity: 0.05; /* Default opacity */
    transition: opacity 0.4s ease;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
}

/* Specific styles for previous and next buttons */
.slick-prev {
    left: 0; /* Position on the left */
    background-position: 0 0; /* Background position for previous button */
}

.slick-next {
    right: 0; /* Position on the right */
    background-position: -64px 0; /* Background position for next button */
}

/* Hover and focus states */
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
    opacity: 1; /* Full opacity on hover/focus */
}

/* Disabled state styles */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25; /* Reduced opacity for disabled state */
}

/* Media Queries for Responsive Design */
@media only screen and (max-width: 150px) {
    .slick-prev,
    .slick-next {
        width: 30px; /* Smaller width for mobile */
        height: 60px; /* Smaller height for mobile */
        background-size: 60px; /* Adjust background size */
    }
    
    .slick-next {
        background-position: -31px 0; /* Adjust position for mobile */
    }
}

@media only screen and (max-width: 150px) {
    .slick-prev,
    .slick-next {
        background-image: url('/assets/images/slider-controls.png');
        /* You can add specific styles for smaller screens if needed */
    }
}
