body { font-family: sans-serif; padding: 20px; max-width: 800px; margin: 0 auto; }
.file-list { margin: 20px 0; border: 1px solid #ddd; padding: 10px; min-height: 50px; background: #fafafa; border-radius: 4px; }

/* Updated File Item Styles for Drag & Drop */
.file-item { 
    padding: 10px; 
    border: 1px solid #ccc; 
    margin-bottom: 5px; 
    background: #fff; 
    cursor: grab; 
    display: flex; 
    align-items: center; 
    border-radius: 4px;
    transition: transform 0.1s ease;
}
.file-item:active { cursor: grabbing; }

/* The little hamburger icon to indicate dragging */
.drag-handle { margin-right: 15px; color: #888; font-weight: bold; cursor: grab; }

/* Style for the item currently being dragged */
.file-item.dragging { opacity: 0.4; border: 1px dashed #007bff; background: #e9f5ff; }

button { padding: 10px 20px; cursor: pointer; margin-right: 10px; }
#video-element { width: 100%; margin-top: 20px; background: #000; display: none; }

/* Style for the download link to make it look like a button */
#download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745; /* Green color to indicate success */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    cursor: pointer;
}
#download-btn:hover {
    background-color: #218838;
}