
/* Label styling */
@media (max-width: 768px) {
	#stateSelect-label, #stateSelect {
		margin: auto;
	}
	
	#dropdown_wrapper {
		margin: auto;
		display: flex;
		flex-direction: column;
	}
}

#stateSelect-label {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	color: #000;
	/* Update to match your color scheme */
	margin-top: 8px;
	font-weight: 500;
}

/* Dropdown (select) styling */
#stateSelect {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 12px 12px;
	width: 225px;
	font-size: 16px;
	color: #333;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"12\" viewBox=\"0 0 24 24\"><path fill=\"%23000\" d=\"M7 10l5 5 5-5z\"/></svg>");
	/* Down-arrow icon */
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 12px;
}

#stateSelect.nitro-lazy {
	background-image: none !important;
}

#stateSelect:hover {
	border-color: #999;
}

#stateSelect:focus {
	border-color: #666;
	outline: none;
	box-shadow: 0 0 0 3px rgba(66, 153, 225, .5);
}

/* Optional: Style options */
#stateSelect option {
	padding: 8px;
	background-color: #fff;
	color: #333;
}

.state-grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.state-column {
	display: flex;
	flex-direction: column;
}

.state-section {
	margin-bottom: 1.5rem;
}

.state-section h3 {
	margin-bottom: .5rem;
}

.state-row {
	margin-bottom: .25rem;
}

.state-separator {
	margin: 1rem 0;
	border: none;
	border-top: 0;
}

@media (max-width: 768px) {
	.state-grid-container {
		grid-template-columns: 1fr;
	}
}
