.file-upload-container {
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  
  .upload-sources {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
  }
  
  .upload-sources button {
    padding: 10px 10px;
    border:1px solid #0000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
    margin: 10px;;
  }
  
  .upload-sources button:hover {
    background: #e9e9e9;
  }
  
  .upload-sources button.active {
    box-shadow: 0 2px 10px rgb(0 0 0 / 31%);
    border-color: #626262;
    border:1px solid #000000;
  }
  
  .upload-sources button img {
  max-width: 54px;
    padding: 9px;
    /* background: #e9e9e9; */
    box-shadow: 0 2px 10px rgb(0 0 0 / 31%);
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .file-selection-area {
    min-height: 70px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
  }
  
  .local-upload, .cloud-selection {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  
  .local-file-button, .cloud-file-button {
    padding: 11px 22px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    font-size: 14px;
  }

 .cloud-remove-button {
    padding: 11px 22px;
    background: #c10202;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    font-size: 14px;
  }
  
  .cloud-remove-button:hover {
    background: #a20707;
  }

  .local-file-button:hover, .cloud-file-button:hover {
    background: #2b6abc;
  }
  
  .cloud-file-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
  }
  
  .selected-file-info {
    margin: 15px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
    border-left: 3px solid #4285f4;
  }
  
  .file-size {
    color: #666;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
  }
  
  .upload-button {
    width: 100%;
    padding: 14px 0;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    transition: background 0.2s;
  }
  
  .upload-button:hover {
    background: #2e8b48;
  }
  
  .upload-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
  }
  
  .message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    background: #f8f9fa;
    text-align: center;
    border-left: 3px solid #4285f4;
  }
  
  /* File Manager Popup Styles */
  .file-manager-popup .dx-popup-content {
    padding: 0;
  }
  
  .file-manager-container {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .file-manager-actions {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    gap: 10px;
  }
  
  .select-button, .cancel-button {
    min-width: 100px;
  }
  
  /* DevExtreme overrides */
  .dx-filemanager-dirs-panel {
    background-color: #f8f9fa;
  }
  
  .dx-filemanager-breadcrumbs {
    border-bottom: 1px solid #e0e0e0;
  }
  
  .dx-filemanager-container {
    border: none;
  }
  
  .dx-filemanager-dirs-panel {
    border-right: 1px solid #e0e0e0;
  }
  
  .dx-filemanager-thumbnails .dx-filemanager-thumbnails-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .dx-filemanager-thumbnails .dx-filemanager-thumbnails-item.dx-filemanager-item-selected {
    border-color: #4285f4;
    background-color: rgba(66, 133, 244, 0.1);
  }
  
  .dx-filemanager-files-view .dx-filemanager-details-item.dx-filemanager-item-selected {
    background-color: rgba(66, 133, 244, 0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .upload-sources {
      flex-direction: column;
    }
    
    .upload-sources button {
      width: 100%;
    }
    
    .file-selection-area {
      min-height: 100px;
      padding: 15px;
    }
    
    .file-manager-popup {
      width: 95% !important;
      height: 90% !important;
    }
  }

  .file-upload-progressbar{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff9c;
    z-index: 2;
    top: 0;
    left: 0;
  }