/* Avvisi di servizio – overlay e modal */

.avviso-servizio-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.avviso-servizio-modal {
	position: relative;
	background: #fff;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow: auto;
	padding: 24px 48px 24px 24px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	box-sizing: border-box;
}

.avviso-servizio-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #555;
	transition: color 0.2s ease;
}

.avviso-servizio-close:hover,
.avviso-servizio-close:focus {
	color: #000;
	outline: 1px dotted currentColor;
}

.avviso-servizio-titolo {
	margin: 0 0 1em;
	font-size: 1.5rem;
	line-height: 1.3;
}

.avviso-servizio-body {
	font-size: 1rem;
	line-height: 1.6;
}

.avviso-servizio-body p:first-child {
	margin-top: 0;
}

.avviso-servizio-body p:last-child {
	margin-bottom: 0;
}

.avviso-servizio-body a {
	color: #0057b7;
}

.avviso-servizio-body a:hover {
	text-decoration: underline;
}

.avviso-servizio-body ul,
.avviso-servizio-body ol {
	margin: 0.5em 0 1em;
	padding-left: 1.5em;
}
