/* Base64 to Video Specific Styles */
.video-preview-container {
    background: var(--bg-secondary, #f8fafc);
    border-radius: 12px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color, #e2e8f0);
}

.video-preview-container video {
    max-width: 100%;
    max-height: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.preview-placeholder {
    text-align: center;
    color: var(--text-secondary, #64748b);
}

.preview-placeholder i {
    font-size: 4rem;
    color: var(--text-tertiary, #94a3b8);
    margin-bottom: 1rem;
}

.video-info {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-primary, #ffffff);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
}

.video-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.video-info-item:last-child {
    border-bottom: none;
}

.video-info-label {
    font-weight: 600;
    color: var(--text-primary, #1e293b);
}

