/* ============================
   BATCH CARDS CAROUSEL
============================ */
a.text-decoration-none .batch-card {
    color: inherit;
}

a.text-decoration-none:hover .batch-card {
    text-decoration: none;
}

.batch-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    color: var(--text-main);
}


.batch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.batch-card-header {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    padding: 2rem;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.batch-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.batch-card-body {
    padding: 1.5rem;
}

.batch-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    min-height: 2.5rem;
}

.batch-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}


.batch-info-item i {
    font-size: 1.1rem;
}

.batch-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* Carousel Controls Styling */
#batchCarousel .carousel-control-prev,
#batchCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#batchCarousel .carousel-control-prev {
    left: -25px;
}

#batchCarousel .carousel-control-next {
    right: -25px;
}

#batchCarousel .carousel-control-prev:hover,
#batchCarousel .carousel-control-next:hover {
    opacity: 1;
}

#batchCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    border: none;
}

#batchCarousel .carousel-indicators button.active {
    opacity: 1;
}

/* Modal Detail Items */
.detail-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}


.detail-item i {
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {

    #batchCarousel .carousel-control-prev,
    #batchCarousel .carousel-control-next {
        display: none;
    }

    .batch-card {
        margin-bottom: 1rem;
    }
}