#nt-coaster-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(20, 15, 10, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

body.nt-coaster-lock {
	overflow: hidden !important;
}

.nt-coaster-modal {
	background: #fff;
	width: 100%;
	max-width: 420px;
	border-radius: 16px;
	padding: 28px 24px;
	box-sizing: border-box;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	max-height: 92vh;
	overflow-y: auto;
}

.nt-coaster-modal h2 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.25;
	color: #1a1a1a;
}

.nt-coaster-sub {
	margin: 0 0 20px;
	color: #555;
	font-size: 14px;
	line-height: 1.4;
}

#nt-coaster-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin: 14px 0 6px;
}

#nt-coaster-form input[type="email"],
#nt-coaster-form input[type="text"],
#nt-coaster-form select {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background: #fafafa;
}

.nt-coaster-autocomplete {
	position: relative;
}

.nt-coaster-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 10;
	margin: 4px 0 0;
	padding: 4px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 10px;
	max-height: 190px;
	overflow-y: auto;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nt-coaster-suggestions li {
	padding: 11px 14px;
	font-size: 15px;
	cursor: pointer;
}

.nt-coaster-suggestions li:hover,
.nt-coaster-suggestions li:active {
	background: #f2f2f2;
}

.nt-coaster-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

#nt-coaster-photo {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
}

.nt-coaster-photo-label {
	display: block;
	margin: 4px 0 0;
	cursor: pointer;
}

.nt-coaster-preview {
	border: 2px dashed #bbb;
	border-radius: 12px;
	padding: 28px 12px;
	text-align: center;
	color: #777;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background-size: cover;
	background-position: center;
	min-height: 120px;
	justify-content: center;
}

.nt-coaster-preview.has-image {
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
	border-style: solid;
	border-color: #4caf50;
}

.nt-coaster-camera-icon {
	font-size: 30px;
}

#nt-coaster-submit {
	width: 100%;
	margin-top: 20px;
	padding: 14px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #d32f2f;
	border: none;
	border-radius: 10px;
	cursor: pointer;
}

#nt-coaster-submit:disabled {
	opacity: 0.6;
}

.nt-coaster-error {
	color: #c62828;
	font-size: 13px;
	margin-top: 10px;
	min-height: 1em;
}

.nt-coaster-step[data-step="loading"],
.nt-coaster-step[data-step="success"] {
	text-align: center;
	padding: 20px 0;
}

.nt-coaster-spinner {
	width: 42px;
	height: 42px;
	margin: 10px auto 18px;
	border: 4px solid #eee;
	border-top-color: #d32f2f;
	border-radius: 50%;
	animation: nt-coaster-spin 0.8s linear infinite;
}

@keyframes nt-coaster-spin {
	to {
		transform: rotate(360deg);
	}
}

.nt-coaster-check {
	width: 56px;
	height: 56px;
	line-height: 56px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: #4caf50;
	color: #fff;
	font-size: 28px;
}
