.edumall-media-video {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
    border-radius: 8px;
    object-fit: contain;
}

.edumall-media-upload {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #fff;
}

.edumall-media-upload input[type="file"] {
    width: 100%;
}

.edumall-media-upload progress {
    width: 100%;
    height: 0.6rem;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
}

.edumall-media-upload [data-media-upload-status] {
    min-height: 1.25rem;
    color: #334155;
    font-size: 0.92rem;
}

.edumall-media-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 700;
}

.edumall-media-status.is-completed {
    background: #dcfce7;
    color: #166534;
}

.edumall-media-status.is-failed {
    background: #fee2e2;
    color: #991b1b;
}

