/**
 * MLS Package Services Lookup - Styles
 */

.mlspsl-lookup-wrapper {
	max-width: 800px;
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.mlspsl-lookup-container {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mlspsl-lookup-container h2 {
	color: #333;
	margin: 0 0 10px 0;
	font-size: 28px;
}

.mlspsl-description {
	color: #666;
	margin: 0 0 30px 0;
	font-size: 16px;
}

/* Form Groups */
.mlspsl-form-group {
	margin-bottom: 25px;
}

.mlspsl-form-group label {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: 16px;
}

.mlspsl-select {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mlspsl-select:hover {
	border-color: #4CAF50;
}

.mlspsl-select:focus {
	outline: none;
	border-color: #4CAF50;
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Loading Indicator */
.mlspsl-loading {
	margin-top: 10px;
	padding: 10px;
	background: #e3f2fd;
	border-left: 4px solid #2196F3;
	border-radius: 4px;
	color: #1976D2;
	font-size: 14px;
}

/* Package Details */
.mlspsl-package-details {
	margin: 30px 0;
	padding: 20px;
	background: #f0f8ff;
	border: 2px solid #4CAF50;
	border-radius: 8px;
}

.mlspsl-package-details h3 {
	margin: 0 0 15px 0;
	color: #2e7d32;
	font-size: 20px;
}

.mlspsl-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-bottom: 15px;
}

.mlspsl-detail-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.mlspsl-detail-label {
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.mlspsl-detail-value {
	font-size: 18px;
	color: #333;
	font-weight: 600;
}

.mlspsl-package-description {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #c8e6c9;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.mlspsl-package-description p {
	margin: 0;
}

/* Services Section */
.mlspsl-services-section {
	margin-top: 30px;
}

.mlspsl-services-section h3 {
	margin: 0 0 20px 0;
	color: #333;
	font-size: 22px;
}

.mlspsl-services-list {
	display: grid;
	gap: 15px;
}

.mlspsl-service-item {
	display: flex;
	gap: 15px;
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.mlspsl-service-item:hover {
	background: #f0f8f0;
	border-color: #4CAF50;
	transform: translateX(5px);
}

.mlspsl-service-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #4CAF50;
	color: white;
	border-radius: 50%;
	font-weight: bold;
	font-size: 16px;
}

.mlspsl-service-content {
	flex: 1;
}

.mlspsl-service-name {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.mlspsl-service-description {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

/* No Services Message */
.mlspsl-no-services {
	padding: 30px;
	text-align: center;
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 6px;
}

.mlspsl-no-services p {
	margin: 0;
	color: #856404;
	font-size: 16px;
}

/* Error Message */
.mlspsl-error-message {
	margin-top: 20px;
	padding: 15px;
	background: #ffebee;
	border-left: 4px solid #f44336;
	border-radius: 4px;
}

.mlspsl-error-message p {
	margin: 0;
	color: #c62828;
	font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.mlspsl-lookup-container {
		padding: 20px;
	}

	.mlspsl-lookup-container h2 {
		font-size: 24px;
	}

	.mlspsl-details-grid {
		grid-template-columns: 1fr;
	}

	.mlspsl-service-item {
		flex-direction: column;
		gap: 10px;
	}

	.mlspsl-service-icon {
		align-self: flex-start;
	}
}
