/* style.css */
/* 
body {
  margin: 0;
  padding: 20px;
  font-family: sans-serif;
}

h1 {
  text-align: center;
}
*/

#drop-area {
  width: 200px;
  height: 80px;
  margin: 20px;
  text-align: center;
  line-height: 40px;
  border: 2px dashed #ccc;
  cursor: pointer;
}

#preview-container {
  text-align: center;
}

#drop-area.drag-over {
  background-color: #eee;
}

.preview-image {
  object-fit: cover;
  width: 200px;
  height: 100px;
  margin: 10px;
  border: 1px solid #ddd;
}

