  .image-upload-icon {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #4285f4;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline;
  }

  .image-upload-icon:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .image-upload-icon:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .image-icon {
    width: 28px;
    height: 28px;
    fill: white;
  }

  /*  */
  .image-upload-icon {
    background: linear-gradient(135deg, #ff5e7d 0%, #4cb8ff 100%);
  }

  .image-upload-icon:hover {
    background: linear-gradient(135deg, #e84c6a 0%, #3aa4e8 100%);
  }

   .upload-container {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
  }

  .upload-container:hover,
  .upload-container.dragover {
    border-color: #4CAF50;
    background-color: #f8f8f8;
  }

  #fileInput {
    display: none;
  }

  .preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
  }

  .preview-item {
    position: relative;
    width: 120px;
    height: 120px;
  }

  .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  .upload-btn {
    background-color: #4CAF50;
    color: white;
    /* padding: 10px 20px; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  .upload-btn:hover {
    background-color: #45a049;
  }

  .upload-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }

  .progress-container {
    width: 100%;
    background-color: #f1f1f1;
    margin: 20px 0;
    display: none;
  }

  .progress-bar {
    height: 20px;
    background-color: #4CAF50;
    width: 0%;
    transition: width 0.3s;
  }

  .status-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: none;
  }

  .success {
    background-color: #dff0d8;
    color: #3c763d;
  }

  .error {
    background-color: #f2dede;
    color: #a94442;
  }

  /* Cropper modal styles */
  #cropperModal.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }

  #cropperModal .modal-content {
    display: flex;
    flex-direction: column;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
  }

  .cropper-container {
    width: 100%;
    height: 60vh;
  }

  .cropper-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .cropper-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .cancel-crop {
    background-color: #f44336;
    color: white;
  }

  .apply-crop {
    background-color: #4CAF50;
    color: white;
  }

  /* Video */
    .video-upload-icon {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5e7d 0%, #4cb8ff 100%);
    color: white;
    cursor: pointer;
    display: inline;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .video-upload-icon:hover {
    background: linear-gradient(135deg, #e84c6a 0%, #3aa4e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .video-upload-icon:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .video-icon {
    width: 24px;
    height: 24px;
    fill: white;
  }

/* Video upload styles */
.error { color: #e74c3c; font-size: 14px; margin-top: 5px; }
.progress-container { margin: 20px 0; display: none; }
progress { width: 100%; height: 10px; border-radius: 5px; }
#videoPreviewContainer { margin: 20px 0; display: none; }
#videoPreview { max-width: 100%; background: #000; }
.preview-info { margin-top: 10px; color: #555; }
/* .upload-btn { background: #3498db; color: white; border: none; padding: 12px 20px; border-radius: 4px; cursor: pointer; font-size: 16px; } */
/* .upload-btn:hover { background: #2980b9; } */
.preview-section { display: flex; gap: 20px; margin-top: 20px; }
.preview-thumbnail { width: 150px; height: 100px; background: #eee; display: flex; align-items: center; justify-content: center; }
.preview-details { flex: 1; }