/* General styles */
body {
    font-family: sans-serif;
    background-color: #f5f5f5; /* Light gray background */
  }
  
  .container {
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Ensure responsiveness */
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff; /* White background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
  }
  
  /* Dropzone */
  .dropzone {
    position: relative;
    border: 2px dashed #ccc; /* Dashed border */
    border-radius: 5px;
    padding: 20px 20px 20px 50px; /* Extra padding on left for icon */
    transition: background-color 0.2s ease-in-out;
  }
  
  .dropzone:hover {
    background-color: #f0f0f0; /* Lighter background on hover */
    cursor: pointer; /* Indicate interactivity */
  }
  
  .dropzone-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }
  
  .dropzone-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 36px;
    color: #ccc;
  }
  
  /* File previews */
  .file-previews {
    margin-top: 20px;
  }
  
  .file-preview {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden; /* Prevent preview content from overflowing */
    position: relative; /* For overlay */
  }
  
  .file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire preview area */
  }
  
  .file-preview .remove-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #f00; /* Red background */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
  }
  
  /* Button */
  .start-upload {
    background-color: #007bff; /* Blue background */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  .start-upload:hover {
    background-color: #0062cc; /* Darker blue on hover */
  }
  
  /* Other elements */
  .supported-files,
  .security-info,
  .help-link {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
  }
  
  .help-link a {
    color: #007bff; /* Blue link color */
    text-decoration: none;
  }
  

  #fileInput {
    position: absolute; /* Position outside of visible area */
    top: -9999px; /* Move it off-screen */
    left: -9999px;
    width: 0;
    height: 0;
    cursor: pointer; /* Show a pointer when hovering over the dropzone */
  }
  
  