#mbws-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.85);
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#mbws-modal {
	max-width: 480px;
	width: 90%;
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	overflow-x: hidden;
}

.mbws-info-text {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 20px;
	text-align: center;
	color: #333;
}

#mbws-form-container {
	margin-bottom: 20px;
}

#mbws-close-btn {
	display: block;
	width: 100%;
	padding: 5px 15px;
	background-color: #f1f1f1;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	font-size: 1rem;
	font-weight: bold;
	transition: background-color 0.2s ease;
	margin-top: 15px;
}

#mbws-close-btn:hover {
	background-color: #e2e2e2;
}