/* ========================= */
/* ✅ Global Alert Styling   */
/* ========================= */
#globalAlertOverlay {
	background-color: rgba(0, 0, 0, 0.4);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 80px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
}

#globalAlertOverlay .alert-box {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	padding: 20px;
	min-width: 320px;
	max-width: 400px;
	text-align: center;
	font-family: "Segoe UI", sans-serif;
}

#globalAlertOverlay .alert-box .icon {
	font-size: 32px;
	margin-bottom: 15px;
}

#globalAlertOverlay .alert-box .message {
	font-size: 16px;
	margin-bottom: 20px;
}

#globalAlertOverlay .alert-box .btn {
	padding: 6px 20px;
	font-size: 14px;
}


/* ========================= */
/* ✅ Background & Layout    */
/* ========================= */

body {
	background-color: #f7f2fa;
}

/* (opzionale) Container spacing */
.container {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

html, body {
	background-color: #f7f2fa !important;
	min-height: 100vh;
}
