.mvc-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.mvc-carousel-track {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    will-change: transform;
}

.mvc-carousel-item {
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 15px;
}

.mvc-carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mvc-no-images {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #f5f5f5;
    border: 2px dashed #ccc;
    color: #666;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
}

