/* Mobile Carousel with Text Component Styles */

.mobile-carousel-text {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.mobile-carousel-text.active {
    opacity: 1;
    position: relative;
}

.indicator-dot {
    width: 30px;
    height: 4px;
    border: none;
    background-color: #dee2e6;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.indicator-dot.active {
    background-color: #495057;
} 