

#carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

#carousel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.carousel-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.carousel-item {
    max-width: 65%;
    max-height: 85vh;
    object-fit: contain;
    display: none;
}

.carousel-item.active {
    display: block;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.nav-btn {
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 580px) {
    .carousel-item {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: none;
    }

}