#dsrsc-modal.dsrsc-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(15, 30, 50, 0.55);
}
#dsrsc-modal.dsrsc-open {
	display: flex;
}
.dsrsc-box {
	background: #fff;
	width: 320px;
	max-width: 90vw;
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.dsrsc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: #2271b1;
	color: #fff;
	font-weight: 600;
}
.dsrsc-close {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}
.dsrsc-body {
	padding: 18px 16px;
	text-align: center;
}
.dsrsc-item {
	margin-bottom: 12px;
}
.dsrsc-item img {
	display: inline-block;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
}
.dsrsc-body .dsrsc-answer {
	display: block;
	width: 100%;
	margin-top: 12px;
	padding: 10px 12px;
	font-size: 16px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	box-sizing: border-box;
	text-align: center;
}
.dsrsc-body .dsrsc-answer:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}
.dsrsc-foot {
	display: flex;
	gap: 10px;
	padding: 12px 16px 16px;
}
.dsrsc-foot button {
	flex: 1;
	padding: 10px 12px;
	font-size: 14px;
	border-radius: 6px;
	cursor: pointer;
	border: 1px solid transparent;
}
.dsrsc-cancel {
	background: #f1f5f9;
	color: #334155;
	border-color: #e2e8f0;
}
.dsrsc-cancel:hover {
	background: #e2e8f0;
}
.dsrsc-confirm {
	background: #2271b1;
	color: #fff;
}
.dsrsc-confirm:hover {
	background: #185a8d;
}
.dsrsc-confirm:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
