.video-generation-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.video-generation-section h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.video-generation-section p {
    color: #666;
    margin-bottom: 1rem;
}

.video-generation-controls {
    margin-bottom: 1rem;
}

.video-status {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.status-processing {
    text-align: center;
}

.status-processing .progress {
    height: 8px;
    background-color: #e9ecef;
}

.status-processing .progress-bar {
    background-color: #16A34A;
    transition: width 0.3s ease;
}

.video-preview video {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-actions {
    gap: 0.5rem;
}

.video-actions .btn {
    min-width: 120px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .video-preview video {
        width: 250px;
        height: 333px;
    }
    
    .video-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .video-actions .btn {
        width: 100%;
    }
}

/* Animation for processing state */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-processing .spinner-border {
    animation: pulse 1.5s ease-in-out infinite;
} 