#file-input {
  display: none;
}

#drop-zone {
  border: 2px dashed #ccc;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  margin: 20px auto;
  text-align: center;
  font-size: 20px;
  color: #aaa;
}

#drop-zone p:first-child {
  margin-top: 80px;
}

#drop-zone:hover {
  border-color: #aaa;
}

#file-label {
  display: block;
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#file-label:hover {
  background-color: #3e8e41;
}


#download-button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

#download-button:hover {
  background-color: #3e8e41;
}

#result {
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}
