/* ==========================================================================
   IvyPanda — components.css
   Reusable small components: the modal popup.
   ========================================================================== */

/* ---------- Modal component ---------- */
.modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.modal.is-open { display: flex; }
.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}
.modal-content {
	position: relative;
	background: var(--color-bg);
	border-radius: var(--radius);
	padding: 30px;
	max-width: 500px;
	width: 90%;
	box-shadow: var(--shadow);
}
.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.4rem;
	cursor: pointer;
	color: var(--color-muted);
}
