/* Menü kartları için özel stiller */
.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Şu anki ders banner'ı için yumuşak ve bilgilendirici stiller */
.current-lesson-banner {
    border-left: 4px solid #1976d2 !important;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%) !important;
    border: 1px solid #b3d9ff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}



/* Mobil responsive */
@media (max-width: 768px) {
    .current-lesson-banner {
        padding: 4px 8px !important;
    }
    
    .current-lesson-banner .d-flex {
        flex-direction: column;
        gap: 2px;
    }
    
    .current-lesson-banner span {
        font-size: 0.8rem !important;
        text-align: center;
    }
    
    .current-lesson-banner .btn {
        font-size: 0.7rem !important;
        padding: 1px 4px !important;
        margin-top: 2px;
    }
    
    .current-lesson-banner i {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    .current-lesson-banner {
        padding: 3px 6px !important;
    }
    
    .current-lesson-banner span {
        font-size: 0.75rem !important;
    }
    
    .current-lesson-banner .btn {
        font-size: 0.65rem !important;
        padding: 1px 3px !important;
    }
    
    .current-lesson-banner i {
        font-size: 0.75rem !important;
    }
}

/* Carousel beyaz sayfa sorunu için */
#infoCarousel {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

#infoCarousel .carousel-item {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    transition: transform 0.8s ease-in-out;
}

#infoCarousel .carousel-item.active,
#infoCarousel .carousel-item-next,
#infoCarousel .carousel-item-prev {
    display: block;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

#infoCarousel .carousel-item-next:not(.carousel-item-start),
#infoCarousel .active.carousel-item-end {
    transform: translateX(100%);
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

#infoCarousel .carousel-item-prev:not(.carousel-item-end),
#infoCarousel .active.carousel-item-start {
    transform: translateX(-100%);
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

#infoCarousel .carousel-fade .carousel-item-next:not(.carousel-item-start),
#infoCarousel .carousel-fade .active.carousel-item-end {
    transform: translateX(0);
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

#infoCarousel .carousel-fade .carousel-item-prev:not(.carousel-item-end),
#infoCarousel .carousel-fade .active.carousel-item-start {
    transform: translateX(0);
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

/* Carousel card arka plan garantisi */
#infoCarousel .card {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

#infoCarousel .card-body {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

/* Carousel responsive düzenlemeler */
@media (max-width: 768px) {
    #infoCarousel .carousel-control-prev,
    #infoCarousel .carousel-control-next {
        width: 8% !important;
    }
    
    #infoCarousel .carousel-control-prev-icon,
    #infoCarousel .carousel-control-next-icon {
        width: 24px !important;
        height: 24px !important;
        background-size: 50% !important;
    }
}

@media (max-width: 576px) {
    #infoCarousel .carousel-control-prev,
    #infoCarousel .carousel-control-next {
        width: 10% !important;
    }
    
    #infoCarousel .carousel-control-prev-icon,
    #infoCarousel .carousel-control-next-icon {
        width: 20px !important;
        height: 20px !important;
        background-size: 45% !important;
    }
}