/* Patient View Styles */
.comparison-carousel {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.carousel-inner {
    height: 450px;
    max-width: 340px;
    margin: 0 auto;
}

.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0,0,0,0.3);
}

.session-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.modal-enlarge img {
    max-height: 80vh;
    width: auto;
    margin: 0 auto;
    display: block;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-image:hover {
    transform: scale(1.05);
    border-color: #007bff;
}

.image-error::after {
    content: "Image not available";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dc3545;
}
/* Add these new styles */
.carousel-section {
    margin: 40px 0;
    border-top: 2px solid #eee;
    padding-top: 30px;
}

.session-carousel {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.session-carousel .carousel-inner {
    height: 450px;
}

.session-carousel img {
    height: 450px;
    object-fit: contain;
    width: 100%;
}

.session-header {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

.carousel-controls {
    margin-top: 15px;
}