.drop-zone {
	max-width: 700px;   /* 900px; */
	width: 100%;
	height: 300px;
	border: 3px dashed #ccc;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	margin: 0 auto 20px auto; /* centralize drop-zone */
}
.drop-zone.active {
	border-color: #3498db;
	background-color: rgba(52, 152, 219, 0.1);
}
.drop-zone__prompt {
	font-size: 1.2em;
	color: #666;
	margin-bottom: 10px;
	position: absolute;
	z-index: 1;
}
.drop-zone__input {
	display: none;
}
canvas {
	max-width: 100%;
	max-height: 100%;
	display: none;
	border-radius: 5px;
}
.info-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.file-info, .metadata-info {
	flex: 1;
	min-width: 300px;
	padding: 15px;
	background-color: #f5f5f5;
	border-radius: 5px;
	display: none;
	line-height: 1.0;
}
.metadata-info {
	background-color: #e8f4fd;
}
.metadata-detail {
	margin-bottom: 15px;
}
.metadata-detail h4 {
	margin: 0 0 5px 0;
	color: #2980b9;
}
.metadata-detail p {
	margin: 0;
	padding: 5px 0;
}
.tag {
	display: inline-block;
	background-color: #3498db;
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.no-data {
	color: #999;
	font-style: italic;
}

#updateCanvas-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#clear-button, #download-button {
/*	background-color: #e74c3c; */
	color: black;   /* white; */
	border: 1px solid black;   /* rgb(51, 51, 51); */
	padding: 5px 10px;   /* 10px 15px; */
	border-radius: 5px;
	cursor: pointer;
	margin-top: 10px;
	display: none;
}
#clear-button:hover, #download-button:hover {
	background-color: #c0392b;
	border: none;
}

#download-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
	
.map-container {
	display: none;
	height: 200px;
	margin-top: 10px;
	background-color: #ddd;
	border-radius: 5px;
	overflow: hidden;
}
#ui-container {
  display: flex; /* Arrange child elements side by side */
  gap: 10px; /* Add spacing between drop-down menus */
  text-align: right; 
  margin: 20px 7px 20px 7px;
  display: none;
}
.field_title {
  font-size: 16px;
  margin-top: 0px;   /* 5px; */
}
.select_field {
  padding: 0 5px;
  font-size: 14px;
  border: 1px solid rgb(51, 51, 51);
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}
#download-info {
  text-align: center;
  color: black;
  display: block;	
}