/* components/slider.css */

/* Dots navigation */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}
