/* ItaliaWP2 Eventi — calendario mensile (Bootstrap Italia) */

.iwp2-cal {
	font-family: "Titillium Web", sans-serif;
	color: #17324d;
	border: 1px solid #e3e4e6;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 2rem;
}

/* Header con navigazione mesi */
.iwp2-cal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: #003882;
	color: #fff;
}
.iwp2-cal__title {
	margin: 0;
	font-size: 1.35rem;
	text-align: center;
	flex: 1;
	color: #fff;
}
.iwp2-cal__header .iwp2-cal__nav {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 0.4rem 0.7rem;
	border-radius: 4px;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.iwp2-cal__header .iwp2-cal__nav:hover {
	background: #fff;
	color: #003882;
	text-decoration: none;
}
.iwp2-cal__header .iwp2-cal__nav:hover * {
	color: #003882;
	text-decoration: none;
}
.iwp2-cal__header .iwp2-cal__nav:focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
.iwp2-cal__nav-text {
	font-size: 0.9rem;
}

/* Griglia */
.iwp2-cal__grid {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.iwp2-cal__grid th {
	padding: 0.5rem 0.25rem;
	text-align: center;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #5a768a;
	border-bottom: 2px solid #e3e4e6;
}
.iwp2-cal__grid th abbr {
	text-decoration: none;
	border: 0;
	cursor: help;
}
.iwp2-cal__grid td.iwp2-cal__cell {
	border: 1px solid #f0f1f2;
	vertical-align: top;
	height: 3.25rem;
	padding: 0 !important;
	text-align: center;
	position: relative;
}
.iwp2-cal__cell--empty {
	background: #fafbfc;
	border-color: #f0f1f2;
}

/* Giorni */
.iwp2-cal__grid .iwp2-cal__day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.25rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font: inherit;
	color: #17324d;
	text-align: center;
	position: relative;
	box-sizing: border-box;
}
.iwp2-cal__grid .iwp2-cal__day-num {
	display: block;
	padding: 0;
	text-align: center;
}
.iwp2-cal__day-num {
	font-size: 1rem;
	line-height: 1;
}
.iwp2-cal__day--empty {
	color: #a9b6c2;
	cursor: default;
}

/* Giorno con eventi = pulsante */
.iwp2-cal__grid button.iwp2-cal__day {
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.15s ease;
}
.iwp2-cal__grid button.iwp2-cal__day:hover {
	background: #c3d6ef;
	box-shadow: inset 0 0 0 2px #003882;
}
.iwp2-cal__grid button.iwp2-cal__day:focus {
	outline: 3px solid #003882;
	outline-offset: -3px;
}
.iwp2-cal__cell--has-events {
	background: #dce8f7;
	box-shadow: inset 0 0 0 1px #a9c4e8;
}
.iwp2-cal__day-dot {
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #003882;
	margin-top: 0;
}
.iwp2-cal__day-count {
	position: absolute;
	top: 3px;
	right: 5px;
	font-size: 0.7rem;
	background: #003882;
	color: #fff;
	min-width: 1.1rem;
	height: 1.1rem;
	line-height: 1.1rem;
	text-align: center;
	border-radius: 50%;
	padding: 0 2px;
}

/* Oggi */
.iwp2-cal__cell--today {
	box-shadow: inset 0 0 0 2px #f28c00;
}
.iwp2-cal__cell--today .iwp2-cal__day-num {
	color: #b36a00;
	font-weight: 700;
}

/* Selezionato */
.iwp2-cal__grid button.iwp2-cal__day--selected {
	background: #003882;
	color: #fff;
}
.iwp2-cal__grid button.iwp2-cal__day--selected .iwp2-cal__day-num {
	color: #fff;
}
.iwp2-cal__grid button.iwp2-cal__day--selected .iwp2-cal__day-dot {
	background: #fff;
}
.iwp2-cal__grid button.iwp2-cal__day--selected:hover {
	background: #002a63;
	box-shadow: none;
}
/* La cella selezionata non mostra il bordo azzurrino delle celle-evento */
.iwp2-cal__cell--has-events:has(.iwp2-cal__day--selected) {
	box-shadow: none;
}

/* Pannello giorno */
.iwp2-cal__day-panel {
	padding: 1.25rem;
	border-top: 1px solid #e3e4e6;
	background: #fafbfc;
}
.iwp2-cal__day-panel:focus {
	outline: 2px dashed #003882;
	outline-offset: -2px;
}
.iwp2-cal__day-title {
	color: #003882;
	font-size: 1.2rem;
	margin: 0 0 1rem;
}
.iwp2-cal__day-hint,
.iwp2-cal__day-empty,
.iwp2-cal__day-loading,
.iwp2-cal__day-error {
	margin: 0;
	color: #5a768a;
}
.iwp2-cal__day-error {
	color: #d9364f;
}

/* Riduzione movimento */
@media (prefers-reduced-motion: reduce) {
	button.iwp2-cal__day { transition: none; }
}

/* Responsive: su mobile la griglia resta leggibile */
@media (max-width: 575px) {
	.iwp2-cal__grid th { font-size: 0.7rem; padding: 0.35rem 0.1rem; }
	.iwp2-cal__cell { height: 2.75rem; }
	.iwp2-cal__day { height: 2.75rem; }
	.iwp2-cal__day-num { font-size: 0.9rem; }
	.iwp2-cal__nav-text { display: none; }
	.iwp2-cal__day-count { font-size: 0.6rem; min-width: 0.95rem; height: 0.95rem; line-height: 0.95rem; }
}
