.carousel {
    width: 100%;
    height: 80vh; /* Default height */
}
.carousel-inner {
    height: 100%;
}
.carousel-item {
    height: 100%;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.carousel-indicators [data-bs-target] {
    background-color: #0E2240; /* Indicator color */
}
.carousel-indicators .active {
    background-color: #0056b3; /* Active indicator color */
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: #0E2240;
}
.biography {
    font-family: Arial, sans-serif;
    padding: 0;
    margin-top: 0;
}
.dancer-info {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.dancer-name {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 0;
    padding-top: 0;
}
.section-title {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}
.qna {
    margin-top: 1rem;
}
.qna p {
    margin-bottom: 0.5rem;
}

/* Media queries for tablets and iPads */
@media (max-width: 1024px) {
    .carousel {
        height: 45vh; /* Adjusted height for tablets */
    }
}

@media (max-width: 576px) {
    .carousel {
        height: 80vh; /* Adjusted height for small devices */
    }
}
