.lake-location-picker,
.fish-species-picker {
	position: relative;
}

.lake-search-results,
.fish-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1050;
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0 0 0.375rem 0.375rem;
	max-height: 280px;
	overflow-y: auto;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

/* Result buttons */
.lake-search-result,
.fish-search-result {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 0;
	background: #fff;
	text-align: left;
	cursor: pointer;
	border-bottom: 1px solid #f1f3f5;
	color: #212529;
}

/* Last item should not have a divider */
.lake-search-result:last-child,
.fish-search-result:last-child {
	border-bottom: 0;
}

/* Mouse hover / normal focus */
.lake-search-result:hover,
.lake-search-result:focus,
.fish-search-result:hover,
.fish-search-result:focus {
	background: #f8f9fa;
	outline: none;
}

/* Keyboard active selection */
.lake-search-result.active,
.lake-search-result[aria-selected="true"],
.fish-search-result.active,
.fish-search-result[aria-selected="true"] {
	background: #0d6efd;
	color: #fff;
	outline: none;
}

/* Keep title readable when active */
.lake-search-result.active .lake-search-result-title,
.lake-search-result[aria-selected="true"] .lake-search-result-title,
.fish-search-result.active .fish-search-result-title,
.fish-search-result[aria-selected="true"] .fish-search-result-title {
	color: #fff;
}

/* Keep lake meta readable when active */
.lake-search-result.active .lake-search-result-meta,
.lake-search-result[aria-selected="true"] .lake-search-result-meta {
	color: rgba(255, 255, 255, 0.85);
}

.lake-search-result-title,
.fish-search-result-title {
	font-weight: 600;
	line-height: 1.2;
}

.lake-search-result-meta {
	font-size: 0.875rem;
	color: #6c757d;
	margin-top: 2px;
}

/* Empty/loading rows */
.lake-search-empty,
.lake-search-loading,
.fish-search-empty {
	padding: 10px 12px;
	font-size: 0.9rem;
	color: #6c757d;
	background: #fff;
}

/* Custom body of water option */
.lake-search-custom-result {
	background: #f8f9fa;
	border-top: 1px solid #dee2e6;
}

.lake-search-custom-result .lake-search-result-title {
	font-weight: 600;
}

.lake-search-custom-result .lake-search-result-meta {
	color: #6c757d;
}

.lake-search-custom-result.active,
.lake-search-custom-result[aria-selected="true"] {
	background: #198754;
	color: #fff;
}

.lake-search-custom-result.active .lake-search-result-title,
.lake-search-custom-result[aria-selected="true"] .lake-search-result-title {
	color: #fff;
}

.lake-search-custom-result.active .lake-search-result-meta,
.lake-search-custom-result[aria-selected="true"] .lake-search-result-meta {
	color: rgba(255, 255, 255, 0.85);
}

/* Selected lake notice */
.selected-lake-notice {
	font-size: 0.9rem;
	color: #198754;
}

/* Form validation */
.formError {
	color: #dc3545;
	font-size: 0.875rem;
}

/* =====================================================
   FilePond
===================================================== */

.filepond--credits {
	display: none;
}

/* Keep FilePond inside its container */
.filepond--root {
	width: 100%;
	max-width: 100%;
}

/* Prevent label/content from spilling outside the grey panel */
.filepond--panel-root {
	overflow: hidden;
}

.filepond--drop-label {
	min-height: 150px;
	padding: 0.75rem;
	display: flex !important;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-sizing: border-box;
}

/* FilePond wraps your labelIdle content inside a label */
.filepond--drop-label label {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	white-space: normal !important;
	overflow-wrap: anywhere;
	text-align: center;
	cursor: pointer;
}

/* Custom label wrapper used in labelIdle */
.filepond-upload-label {
	width: 100%;
	max-width: 100%;
	
	box-sizing: border-box;
	text-align: center;

}

.filepond-mobile-label,
.filepond-desktop-label {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.filepond-upload-icon {


	color: #0d6efd;
}

.filepond-upload-title {
	font-weight: 600;


	white-space: normal;
}

.filepond-upload-subtitle {
	font-size: 0.875rem;
	line-height: 1.25;
	color: #6c757d;
	white-space: normal;
	overflow-wrap: anywhere;
}

.filepond--label-action {
	text-decoration: underline;
	font-weight: 600;
	cursor: pointer;
}

/* Better mobile tap targets */
@media (max-width: 576px) {
	.lake-search-result,
	.fish-search-result {
		padding: 12px 14px;
	}

	.lake-search-results,
	.fish-search-results {
		max-height: 240px;
	}
}

/* Mobile FilePond label sizing */
@media (max-width: 767.98px) {
	.filepond--drop-label {
		min-height: 130px;
		padding: 0.5rem;
	}

	.filepond-upload-label {
		
	}

	.filepond-upload-icon {
		font-size: 3rem;
		margin-bottom: 0.4rem;
	}

	.filepond-upload-title {
		font-size: 0.95rem;
	}

	.filepond-upload-subtitle {
		font-size: 0.8rem;
	}
}