/* CSS based on the provided design */
.fsq-container {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	max-width: 800px;
	margin: 20px auto;
}

.fsq-search-wrapper {
	display: flex;
	align-items: stretch;
	height: 60px;
	background: #ffffff;
	border: 1px solid #ccc;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.fsq-icon-container {
	background-color: #174a7c;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fsq-input-container {
	flex-grow: 1;
	display: flex;
	align-items: center;
}

#fsq-search-form {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

button.fsq-btn.fsq-btn-quote {
    background: #174a7c;
    color: #fff;
    border: none;
    font-weight: 600;
}

#fsq-search-input {
	width: 100%;
	height: 100%;
	border: none;
	padding: 0 15px;
	font-size: 16px;
	color: #666;
	background: transparent;
	box-shadow: none;
	outline: none;
}

#fsq-search-input::placeholder {
	color: #aaa;
}

.fsq-button-container {
	background-color: #174a7c;
	color: #ffffff;
	padding: 0 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 500;
	font-size: 15px;
	transition: background-color 0.2s;
}

.fsq-button-container:hover {
	background-color: #11385f;
}

.fsq-examples {
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-top: 15px;
}

.fsq-contact-cta {
	text-align: center;
	color: #174a7c;
	font-weight: bold;
	font-size: 15px;
	margin-top: 10px;
}

/* Results Styles */
#fsq-results-container {
	margin-top: 30px;
}

.fsq-no-results {
	text-align: center;
	color: #d32f2f;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}

.fsq-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 15px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fsq-card-name {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	flex-grow: 1;
	margin-right: 15px;
}

.fsq-card-actions {
	display: flex;
	gap: 10px;
}

.fsq-btn {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background 0.2s;
}

.fsq-btn-view {
	background: #f0f0f0;
	color: #333;
	border: 1px solid #ccc;
}

.fsq-btn-view:hover {
	background: #e0e0e0;
	color: #333;
}

.fsq-btn-download {
	background: #174a7c;
	color: #fff;
	border: 1px solid #174a7c;
}

.fsq-btn-download:hover {
	background: #11385f;
	color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
	.fsq-search-wrapper {
		flex-direction: column;
		height: auto;
	}
	.fsq-icon-container {
		display: none; /* Hide icon on mobile to save space */
	}
	.fsq-input-container {
		height: 50px;
	}
	.fsq-button-container {
		height: 50px;
	}
	.fsq-card {
		flex-direction: column;
		align-items: flex-start;
	}
	.fsq-card-actions {
		margin-top: 15px;
		width: 100%;
	}
	.fsq-btn {
		text-align: center;
		flex-grow: 1;
	}
}

/* Modal Styles */
.fsq-modal {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fsq-modal-content {
	background-color: #fefefe;
	padding: 30px;
	border: 1px solid #888;
	width: 90%;
	max-width: 500px;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.fsq-close {
	color: #aaa;
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.fsq-close:hover,
.fsq-close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.fsq-btn-quote {
	background: #e67e22;
	color: #fff;
	border: 1px solid #d35400;
	cursor: pointer;
}

.fsq-btn-quote:hover {
	background: #d35400;
	color: #fff;
}
