/* Image Slider Component Styles */

.image-slider {
    position: relative;
}

.image-slider .thumbnail {
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-slider .thumbnail:hover {
    border-color: rgb(147, 197, 253);
}

.image-slider .thumbnail.active {
    border-color: rgb(59, 130, 246) !important;
}

.image-slider .thumbnail img {
    transition: filter 0.3s ease;
}

.image-slider .thumbnail.active img {
    filter: none !important;
}

.image-slider .main-image {
    transition: opacity 0.3s ease;
}

.image-slider .navigation-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-slider .nav-button {
    background: white;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.image-slider .nav-button:hover {
    background: rgb(249, 250, 251);
    transform: scale(1.05);
}
