.display-none {
    display: none !important;
}

.oto-modal-btn {
    background: #fed941;
    color: #322400;
    border: unset;
}

.oto-modal-btn:hover, .oto-modal-btn:focus {
    background: #fedf36;
    opacity: 0.6;
    transition: 0.5s ease;

    border: unset;
    color: #322400;
}

.prompt-block {
    border-radius: 8px;
    padding: 10px 30px 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #fed941;
    position: relative;
}

.remove-block {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: #fedf36;
    font-weight: bold;
}

.upload-box img {
    max-width: 100px;
    height: auto;
}

.upload-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #fed941;
    margin: 5px;
}
.preview-wrapper {
    display: inline-block;
    position: relative;
}
.remove-preview {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 18px;
    cursor: pointer;
}

/* ================================================
   VIDEO CREATE PAGE
   ================================================ */

/* Upload boxes */
.upload-box {
    cursor: pointer;
    border: 2px dashed #fed941;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.upload-box:hover {
    border-color: #f39c12;
}

/* Upload hint text */
.upload-hint {
    font-size: 11px;
    color: #aaa;
}

/* Preview grid */
.preview-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.media-content {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #fed941;
}

.preview-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-media--video {
    /* video-specific overrides if needed */
}

.preview-label {
    font-size: 10px;
    color: #aaa;
}

/* Remove button on preview */
.remove-preview {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.remove-preview:hover {
    background: #dc2626;
}

/* Multi-prompt blocks */
.prompt-block {
    position: relative;
    background: #1e293b;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.remove-block {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    color: #ef4444;
    font-size: 18px;
    line-height: 1;
}

.remove-block:hover {
    color: #dc2626;
}

.scene-duration--input {
    width: 70px;
}

/* Result area */
.result-video {
    max-height: 500px;
    width: 100%;
    display: block;
    margin: auto;
}

/* Error message in result */
.result__error-message {
    margin-top: 1rem;
    color: #f87171;
}

/* Disclaimer text */
.create-disclaimer {
    font-size: 11px;
    color: #6b7280;
    margin-top: 0.5rem;
}