/* General slider styling */
.simple-slider-rr {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

.simple-slider-rr img {
    width: 100%;
    height: auto;
}

.simple-slide-item {
    position: relative;
}

/* Styling for the 'Learn More' button */
.slider-button-rr {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;

    /* Centering the button on the image */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-button-rr:hover {
    background-color: #333;
}

/* Arrow button styling for navigation */
.slick-prev, .slick-next {
    background-color: #333;
    border-radius: 50%;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 20;
}

.slick-prev:hover, .slick-next:hover {
    background-color: #000;
}

/* Dots navigation styling, positioned below the slider */
.slick-dots {
    position: relative;
    text-align: center;
    z-index: 5;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #333;
}

.slick-dots li.slick-active button:before {
    color: #000;
}
