/* Helpdesk Carousel Styles - Namespaced to avoid conflicts */
.hd-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hd-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hd-carousel-slide.active {
    opacity: 1;
}

.hd-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Indicators */
.hd-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hd-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hd-indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}