#drw-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 999998;
	background: rgba(17, 24, 39, 0.62);
}

#drw-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999999;
	width: min(560px, calc(100vw - 32px));
	max-height: calc(100vh - 48px);
	overflow: auto;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 28px;
	border-top: 7px solid #f97316;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.34);
	color: #111827;
	font-family: inherit;
}

.drw-modal-marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: #fff7ed;
	color: #c2410c;
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}

#drw-modal-title {
	margin: 0 0 14px;
	color: #111827;
	font-size: 24px;
	line-height: 1.25;
}

.drw-modal-message {
	margin: 0 0 22px;
	color: #1f2937;
	font-size: 17px;
	line-height: 1.55;
	white-space: pre-line;
}

.drw-modal-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 22px;
	border: 0;
	border-radius: 6px;
	background: #111827;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

.drw-modal-button:focus {
	outline: 3px solid #fb923c;
	outline-offset: 3px;
}

.drw-alert {
	box-sizing: border-box;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	border: 2px solid #fb923c;
	background: #fff7ed;
	color: #111827;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.drw-alert-inline {
	margin: 16px 0;
	padding: 16px;
}

.drw-alert-marker {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #f97316;
	color: #fff;
	font-size: 23px;
	font-weight: 800;
	line-height: 1;
}

.drw-alert-content {
	min-width: 0;
	flex: 1 1 auto;
}

.drw-alert-title {
	display: block;
	margin: 0 0 6px;
	color: #111827;
	font-size: 17px;
	line-height: 1.3;
}

.drw-alert-message {
	color: #1f2937;
	font-size: 15px;
	line-height: 1.45;
	white-space: pre-line;
}

@media (max-width: 640px) {
	#drw-modal {
		padding: 22px;
	}

	#drw-modal-title {
		font-size: 21px;
	}

	.drw-modal-message {
		font-size: 16px;
	}

	.drw-alert {
		gap: 11px;
	}
}
