/* TSS RV Directory Suite — Add Listing preview modal */
.tss-preview-overlay {
	position: fixed; inset: 0; z-index: 99999;
	background: rgba(17, 28, 51, 0.55);
	display: flex; align-items: center; justify-content: center; padding: 18px;
}
.tss-preview-modal {
	background: #fff; border-radius: 16px; max-width: 640px; width: 100%;
	max-height: 84vh; display: flex; flex-direction: column;
	padding: 26px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.tss-preview-modal h3 { margin: 0 0 4px; font-size: 22px; color: #111c33; }
.tss-preview-sub { margin: 0 0 16px; color: #6b7280; font-size: 14px; }
.tss-preview-body { overflow-y: auto; border: 1px solid #e5e9f0; border-radius: 10px; padding: 6px 16px; }
.tss-preview-row {
	display: flex; gap: 14px; padding: 9px 0; border-bottom: 1px dashed #e5e9f0;
	font-size: 14px;
}
.tss-preview-row:last-child { border-bottom: 0; }
.tss-preview-row span { flex: 0 0 160px; color: #6b7280; }
.tss-preview-row strong { flex: 1; color: #1b2430; font-weight: 600; word-break: break-word; }
.tss-preview-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 18px; }
.tss-preview-actions button {
	border: 0; border-radius: 9px; padding: 12px 22px; font-weight: 700; cursor: pointer; font-size: 14px;
}
.tss-preview-back { background: #eef2f7; color: #2b3850; }
.tss-preview-confirm { background: #111c33; color: #fff; }
.tss-preview-actions button:hover { opacity: 0.9; }
