#mapdiv {
	height: 100vh;
}

.popup-container {
    width: 80vh;  /* 80% of the viewport width */
    max-width: 300px;  /* Maximum width */
    height: 60vh;  /* 60% of the viewport height */
    max-height: 350px;  /* Maximum height */
    padding: 10px;  /* Add some padding */
    box-sizing: border-box;  /* Ensure padding is included in width/height */
    overflow-y: auto;
}


.popup-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.popup-label {
    flex: 1;
    margin-right: 10px;
}

.popup-input {
    flex: 2;
}

.popup-label2 {
    text-align: center;
}

.popup-button-group {
    display: flex;
    justify-content: space-between;
}

.popup-button {
    flex: 1;
    margin-right: 10px;
}

.popup-button:last-child {
    margin-right: 0;
}

.comment {
    flex: 1;
    margin-right: 10px;
}

#result {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: white;
    width: 100%;
    z-index: 1000;
}

#result li {
    padding: 8px;
    cursor: pointer;
}

#result li:hover {
    background-color: #f0f0f0;
}

.results {
    font-size: 10px;
    color: #333;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
  background-color: #f9f9f9;
  transition: background-color 0.3s;
    box-shadow: none;
    text-shadow: 0 0 2px #fff;
}