/**
 * Dravin Protect — Front-end Styles
 * Version: 1.0.0
 */

/* ─────────────────────────────────────────
   TOAST NOTIFICATION
   Bottom-center, snackbar-style
───────────────────────────────────────── */
#dp-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(12px);
	background: #1a1a1a;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-family: inherit;
	font-weight: 500;
	letter-spacing: 0.01em;
	opacity: 0;
	transition: opacity 0.22s ease, transform 0.22s ease;
	pointer-events: none;
	z-index: 999999;
	white-space: nowrap;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	-webkit-font-smoothing: antialiased;
}

#dp-toast.dp-toast-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* Mobile — slightly smaller, keep above bottom nav */
@media (max-width: 768px) {
	#dp-toast {
		bottom: 72px; /* above typical mobile bottom nav */
		font-size: 12px;
		padding: 9px 16px;
		max-width: calc(100vw - 48px);
		white-space: normal;
		text-align: center;
	}
}
