/* Main Container */
.aivep-container {
    background: #0a0a0a;
    min-height: 100vh;
    color: #ffffff;
}

/* Upload Area */
.aivep-upload-area {
    background: #1a1a1a;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.border-dashed {
    border: 2px dashed #333;
}

.aivep-upload-area:hover {
    border-color: #2563eb;
    background: #1f1f1f;
}

/* Video Preview */
#aivep-video-preview {
    max-height: 70vh;
    border-radius: 8px;
    background: #000;
}

/* Tool Buttons */
.aivep-tool-btn {
    transition: all 0.3s ease;
}

.aivep-tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .aivep-sidebar {
        margin-bottom: 2rem;
    }
    
    #aivep-video-preview {
        max-height: 50vh;
    }
}