@charset "utf-8";
/* CSS Document */
/* assets/styles.css */
html {
	height: 100%;
}
body { 
	margin:0; 
	height: 100%;
	font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
header { 
	padding: 1rem; 
	background: #f7f7f7; 
	border-bottom: 1px solid #e5e5e5;
}
header h1 {
	padding-bottom: 0px;
	margin-bottom: 0px;
}

header h3 {
	padding-top: 0px;
	margin-top: 0px;
}
form { 
	font-size: 1.25rem;
	gap: 1rem;
}

form label {
	font-weight: 600;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

form input[type="text"], form select {
	font-size: 1.25rem;
	padding: 0.75rem 1rem;
	height: auto;
	border-radius: 6px;
	border: 1px solid #ccc;
	width: 100%;
	box-sizing: border-box;
}

form button {
	font-size: 1.25rem;
	padding: 0.75rem 1.25rem;
	background-color: #007bff;
	color: #fff;
	border: none;
	cursor: pointer;
}

form button:hover {
	background-color: #0056b3;
}

.field { 
	display:flex; 
	flex-direction:column;
	margin-bottom: 1rem;
}
label { 
	font-weight:600; 
	font-size:2rem;
}
button { 
	padding:.5rem .9rem;
}

.leaflet-map { 
	height: 600px;
	align-items: flex-start;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.leaflet-container .leaflet-tile, .leaflet-container .leaflet-image-layer {
	max-width: none !important;
	max-height: none !important;
}

.leaflet-container .leaflet-tile-pane img{
	max-width: none !important;
}

.leaflet-tooltip, .leaflet-popup {
	z-index: 1000;
}

.leaflet-control {
	z-index: 1000;
}

.leaflet-bottom.leaflet-right .legend {
	margin: 8px;
}
footer {
	text-align: center;
	font-weight: 100;
	font-style: italic;
}

table th{
	border-bottom: 1px solid;
	border-top: 1px solid;
	padding: 6px;
}

#resultsContainer {
	max-height: 600px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid #ddd;
	border-radius: 6px;
}

#resultsContainer table {
	width: 100%;
	border-collapse: collapse;
}

#resultsContainer table th, #resultsContainer table td {
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	text-align: left;
}
#resultsContainer thead th {
	position: sticky;
	top: 0;
	background: #f8f9fa;
	z-index: 1;
}


