
        .video-uploader-wrapper {
            margin: 0 auto;
            background: white;
            padding: 10px;
            background-color: #f5f5f5;
        }
        
        .video-uploader-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            color: #333;
        }
        
        /* Video card styling to match image cards from the CSS */
        .video-card {
            position: relative;
            float: left;
            width: 100%;
            margin: 0 10px 10px 0;
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .video-preview {
            position: relative;
            /* width: 150px;*/
            /*height: 150px; */
            background: #000;
            cursor: pointer;
            overflow: hidden;

			aspect-ratio: 1 / 1;
        }
        
        .video-preview video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-preview:hover .play-overlay {
            opacity: 1;
        }
        
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            cursor: pointer;
        }
        
        .play-overlay i {
            color: white;
            font-size: 18px;
            margin-left: 3px;
        }
        
        .video-actions {
            position: absolute;
            top: 5px;
            right: 5px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
        }
        
        .video-card:hover .video-actions {
            opacity: 1;
        }
        
        .video-delete {
            background: rgba(255,255,255,0.9);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .video-delete:hover {
            background: #ff4444;
        }
        
        .video-delete:hover i {
            color: white;
        }
        
        .video-delete i {
            color: #999;
            font-size: 14px;
        }
        
        .video-info {
            padding: 8px;
            background: #fafafa;
display:none;
        }
        
        .video-name {
            font-size: 12px;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 5px;
        }
        
        .video-size {
            font-size: 10px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .video-progress {
            height: 3px;
            background: #f0f0f0;
            border-radius: 2px;
            overflow: hidden;
            margin: 5px 0;
        }
        
        .video-progress-bar {
            height: 100%;
            background: #3498db;
            width: 0%;
            transition: width 0.3s;
        }
        
        .video-status {
            font-size: 10px;
            display: inline-block;
            padding: 2px 6px;
            border-radius: 3px;
        }
        
        .status-pending {
            background: #f0f0f0;
            color: #999;
        }
        
        .status-uploading {
            background: #fff3cd;
            color: #856404;
        }
        
        .status-success {
            background: #d4edda;
            color: #155724;
        }
        
        .status-error {
            background: #f8d7da;
            color: #721c24;
        }
        
        /* Clear floats */
        .preview-container:after {
            content: '';
            display: table;
            clear: both;
        }
        
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        
        .empty-state i {
            font-size: 48px;
            margin-bottom: 10px;
        }
        
        /* Modal for video playback */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        
        .video-modal.active {
            display: flex;
        }
        
        .video-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .video-modal-content video {
            width: 100%;
            max-height: 90vh;
        }
        
        .video-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .status-message {
            margin-top: 20px;
            padding: 10px 15px;
            border-radius: 4px;
            display: none;
            clear: both;
        }
        
        .status-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }
        
        .status-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }
        
        .status-message.info {
            background: #d1ecf1;
            color: #0c5460;
            border: 1px solid #bee5eb;
            display: block;
        }