/* Video Upload Modal Styles */
#videoUploadModal .modal-content {
    max-width: 600px;
    width: 90%;
}

#videoUploadModal .form-group {
    margin-bottom: 1.5rem;
}

#videoUploadModal .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

#videoUploadModal .form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    background: var(--gray-50);
    cursor: pointer;
    transition: all 0.2s ease;
}

#videoUploadModal .form-group input[type="file"]:hover {
    border-color: var(--primary-500);
    background: var(--primary-50);
}

#videoUploadModal .form-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

#videoPreviewContainer {
    margin-top: 1rem;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

#videoPreview {
    width: 100%;
    max-height: 400px;
    display: block;
}

#thumbnailPreviewContainer {
    margin-top: 1rem;
    position: relative;
}

#thumbnailPreview {
    width: 100%;
    height: auto;
    display: block;
}

#removeThumbnailBtn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

#removeThumbnailBtn:hover {
    background: rgba(220, 38, 38, 0.9);
}

#videoUploadModal .modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

#videoUploadModal .btn-secondary {
    padding: 0.75rem 1.5rem;
    background: var(--gray-200);
    color: var(--gray-700);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

#videoUploadModal .btn-secondary:hover {
    background: var(--gray-300);
}

#videoUploadModal .btn-primary {
    padding: 0.75rem 1.5rem;
    background: var(--primary-600);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#videoUploadModal .btn-primary:hover:not(:disabled) {
    background: var(--primary-700);
}

#videoUploadModal .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#videoUploadModal .btn-primary svg {
    width: 16px;
    height: 16px;
}




