body {
  font-family: Arial, sans-serif;
}

.drop-area {
  border: 3px dashed #ccc;
  border-radius: 10px;
  color: #aaa;
  transition: border-color 0.3s;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.drop-area.highlight {
  border-color: #4a90e2;
  color: #4a90e2;
}

.smallFont{
  font-size: 12px;
}

.fileElem {
  display: none;
}

.file-list {
  margin-top: 20px;
  max-width: 600px;
}

.file-item {
  padding: 6px 10px;
  border: 1px solid #ddd;
  margin-bottom: 6px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 90%;
}

.remove-btn {
  cursor: pointer;
  color: red;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
}

button {
  cursor: pointer;
}

.fileSelectBtn {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: #4a90e2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
