/* =====================================================
   SEA Modal — shared modal styles
   ===================================================== */

/* Lock body scroll while modal is open */
body.sea-modal-open {
	overflow: hidden;
}

#sea-modal-dialog {
	border: none;
	border-radius: 10px;
	padding: 0;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

#sea-modal-dialog::backdrop {
	background: rgba(0, 0, 0, 0.6);
}

.sea-modal-inner {
	padding: 30px;
	position: relative;
}

.sea-modal-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	padding: 0;
    animation: none;
}

.sea-modal-close:hover,
.sea-modal-close:focus,
.sea-modal-close:active {
	background-color: #fff;
	color: #000;
}

.sea-modal-content img {
	max-width: 300px;
	height: auto;
	display: block;
	margin: 0 auto 20px;
	object-fit: contain;
}

.sea-modal-body {
	font-size: 14px;
	color: #333;
	line-height: 1.6;
}

.sea-modal-body p:last-child {
	margin-bottom: 0;
}
