/* Main plugin container */
.zip-location-form {
	/*max-width: 500px;
	margin: 0 auto;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;*/
}

.zip-location-form input[type="text"] {
	/*width: 80%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 10px;
	box-sizing: border-box;*/
}

.zip-location-form button {
	/*width: 85%;
	padding: 12px;
	font-size: 16px;
	background-color: #0073e6;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;*/
}

.zip-location-form button:hover {
/*	background-color: #005bb5;*/
}

/* Displaying the location info results */
#location-result {
/*	margin-top: 20px;*/
/*	padding: 15px;*/
/*	background-color: #e9f7fb;*/
/*	border: 1px solid #b3d7e0;*/
/*	border-radius: 4px;*/
/*	color: #333;*/
/*	font-size: 16px;*/
}

#location-result p {
	margin-bottom: 5px;
}

/*#location-result strong {
	color: #0056b3;
}*/

/* Error or no result message */
#location-result.error {
	background-color: #f8d7da;
	border-color: #f5c6cb;
	color: #721c24;
}

#location-result.no-info {
	background-color: #fff3cd;
	border-color: #ffeeba;
	color: #856404;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
	.zip-location-form {
/*		width: 90%;*/
	}

	.zip-location-form input[type="text"] {
/*		width: 100%;*/
	}

	.zip-location-form button {
/*		width: 100%;*/
	}
}
