#dropArea {
  border: 2px dashed var(--text_color_1);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  color: var(--text_color_1);
  display: none;
}

#dropArea.dragover {
  border-color: #333;
  background-color: #f0f0f0;
}

.attached_images {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 50px;
  display: none;
}

.attached_images img {
  height: 30px;
  padding: 10px;
}
.overlay_for_attachments {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #201f1fc0;
  display: flex;
  justify-content: left;
  align-items: center;
  display: none;
}
.attachments_popup {
  margin: auto;
  position: relative;
}

.attachments_popup img {
  max-width: 1000px;
  max-height: 80vh;
}
.delete_image {
  /* background-color: var(--text_color_4); */
  color: var(--text_color_1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 55px;
  top: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download_image {
  /* background-color: var(--text_color_4); */
  color: var(--text_color_1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 5px;
  top: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.delete_image:hover,
.download_image:hover {
  background-color: var(--text_color_4);

  box-shadow: var(--shadow);
}

.download_image p {
  font-size: small;
  text-shadow: 2px 2px 10px black;
  display: flex;
  align-items: center;
  text-decoration: none;
}
