/* Quote Popup Styles */
body.binsbay-popup-open {
	overflow: hidden;
}

.binsbay-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.binsbay-popup-content {
	background: #fff;
	max-width: 600px;
	width: 100%;
	border-radius: 8px;
	padding: 30px;
	position: relative;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
	max-height: 90vh;
	overflow-y: auto;
}

.binsbay-popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #333;
	cursor: pointer;
	line-height: 1;
}

.binsbay-popup-close:hover {
	color: #e00;
}

.binsbay-popup-content h2 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 24px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.binsbay-form-row {
	margin-bottom: 15px;
}

.binsbay-form-row label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #444;
}

.binsbay-form-row input[type="text"],
.binsbay-form-row input[type="email"],
.binsbay-form-row input[type="tel"],
.binsbay-form-row input[type="number"],
.binsbay-form-row input[type="date"],
.binsbay-form-row textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.binsbay-form-row input[readonly] {
	background-color: #f5f5f5;
	color: #666;
	cursor: not-allowed;
}

.binsbay-form-submit {
	margin-top: 25px;
	text-align: center;
}

.binsbay-form-submit button {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	font-weight: 600;
}

#binsbay-quote-message {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-weight: 600;
}

#binsbay-quote-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

#binsbay-quote-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.binsbay-get-quote-wrapper {
	margin-bottom: 30px;
}
