body {
  font-family: 'Roboto', sans-serif;
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #333;
}

.container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #007bff;
}

.upload-area {
  border: 2px dashed #007bff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.upload-area p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

.upload-area:hover {
  background-color: #f1f8ff;
  border-color: #0056b3;
}

button, select {
  padding: 12px 24px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 20px;
}

button:hover, select:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#downloadArea a {
  display: block;
  margin: 10px 0;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

#downloadArea a:hover {
  color: #0056b3;
}

.dragover {
  background-color: #e3f2fd;
}

.img-wrapper {
  position: relative;
  display: inline-block;
}

.preview-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 20px;
    height: 20px;
    padding: 0; /* Remove padding */
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #888;
    line-height: 20px; /* Set line-height equal to height */
    vertical-align: middle; /* Center vertically */
}




.preview-area img {
  max-width: 100px;
  max-height: 100px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

select {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  padding: 12px 24px;
  margin-top: 20px;
  transition: background-color 0.3s, transform 0.3s;
}
