/* Quote modal styles — Pro feature */
.catc-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	padding: 20px;
	box-sizing: border-box;
}
.catc-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.catc-modal-content {
	position: relative;
	width: 100%;
	max-width: 500px;
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
}
.catc-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}
#catc-quote-form input,
#catc-quote-form textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
#catc-quote-message {
	padding: 10px 15px;
	border-radius: 4px;
	margin-bottom: 15px;
	display: none;
}
#catc-quote-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
#catc-quote-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}
