#mpu-uploader {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
}

.mpu-queue-item {
    margin-top: 10px;
}

.mpu-progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.mpu-progress-inner {
    width: 0;
    height: 100%;
    background: #4caf50;
    transition: width 0.2s linear;
}

.mpu-section {
    margin: 30px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.mpu-section-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.mpu-carousel {
    position: relative;
    overflow: hidden;
}

.mpu-carousel-frame {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpu-slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
}

.mpu-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mpu-slide.mpu-active {
    display: block;
}

.mpu-prev,
.mpu-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
}

.mpu-prev {
    left: 10px;
}

.mpu-next {
    right: 10px;
}

/* Fullscreen overlay */
#mpu-fullscreen-overlay {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
}

#mpu-fullscreen-overlay.mpu-visible {
    display: flex;
}

#mpu-fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#mpu-fullscreen-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}