/* Styles for the introductory modal carousel */
.carousel-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: flex-start;
}

.carousel-slide-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #ffffff;
    min-height: 0; /* Allow it to shrink if needed */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: left 0.2s ease-in-out;
    padding: 0; /* Remove padding since iframe will handle its own content */
    overflow: hidden; /* Hide scrollbars on the slide div */
}

.carousel-navigation {
    /* display: flex; (Handled by dbc.Row) */
    /* justify-content: space-between; (Handled by dbc.Col) */
    /* align-items: center; (Handled by dbc.Row) */
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    border-bottom: 1px solid #e9ecef;
}

.carousel-indicators {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center; /* Ensures dots are centered in their column */
}

.carousel-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    border: 1px solid #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator:hover {
    background-color: #aaa;
    transform: scale(1.1);
}

.carousel-indicator.active {
    background-color: #0d6efd;
    border-color: #0a58ca;
    transform: scale(1.2);
} 