/* Medina County Ohio Parcel Search Styles */

#mcops-container {
	padding: 25px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	max-width: 100%;
	margin: 30px auto;
}

#mcops-container h2 {
	margin-top: 0;
	font-size: 22px;
	color: #23282d;
	border-bottom: 2px solid #0073aa;
	padding-bottom: 12px;
	margin-bottom: 25px;
}

.mcops-box {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
}

.mcops-box input {
	flex: 1;
	min-width: 220px;
	padding: 12px 15px;
	font-size: 16px;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	background-color: #f9f9f9;
	transition: border-color 0.2s;
}

.mcops-box input:focus {
	border-color: #0073aa;
	outline: none;
	background-color: #fff;
}

#mcops-btn {
	padding: 12px 25px;
	font-size: 16px;
	background-color: #0073aa;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.2s;
}

#mcops-btn:hover {
	background-color: #00608e;
}

#mcops-status {
	margin-bottom: 14px;
	font-size: 15px;
	min-height: 20px;
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

#mcops-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	color: #444;
	min-width: 1100px;
}

#mcops-table th,
#mcops-table td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid #f0f0f0;
	vertical-align: top;
	white-space: nowrap;
}

#mcops-table th {
	background-color: #f8f9fa;
	color: #333;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.4px;
}

#mcops-table tr:nth-child(even) {
	background-color: #fdfdfd;
}

#mcops-table tr:hover {
	background-color: #f0f8ff;
}

#mcops-table a {
	color: #0073aa;
	text-decoration: none;
}

#mcops-table a:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.mcops-box input {
		min-width: 100%;
	}

	#mcops-btn {
		width: 100%;
	}

	#mcops-table {
		font-size: 11px;
	}
}
