/* File Upload Button style */
#file-upload {
  display: none;
}

label[for="file-upload"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

label[for="file-upload"]:hover {
  background-color: #45A049;
}

/* CSS style for the Upload button */
.upload-button {
  background-color: #007BFF;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

.upload-button:hover {
  background-color: #0056b3;
}

/* CSS style for the Delete button */
.delete-button {
  background-color:#c8102e;
  color: white;
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.delete-button:hover {
  background-color: #f14608;
}

/* Uploaded Files List style */
#uploaded-files {
  margin-top: 20px;
}
#file-list {
  list-style-type: none;
  padding: 0;
}
#file-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
#file-list li .delete-button {
  margin-left: 10px;
  background-color: #c8102e;
  transition: background-color 0.3s ease;
}

#file-list li .delete-button:hover {
  background-color: #f14608;
}

#selected-file-name {
  margin-top: 10px;
}

/* Drag and Drop File Upload styles */
.drag-drop-container {
  border: 2px dashed #ccc;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}

.drag-drop-message {
  font-size: 16px;
  color: #666;
}

.drag-drop-message label {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.drag-drop-message label:hover {
  background-color: #45A049;
}

#drag-drop-container #file-upload {
  cursor: pointer;
}
