/**
 * Calendar Widget Styles
 */

.calendar-widget {
	background: #ffffff;
	border-radius: 0.85rem;
	padding: 1rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid #edf0f7;
	margin-top: 1.5rem;
}

.calendar-title {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #162447;
}

.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #edf0f7;
}

.calendar-nav {
	color: #0056a4;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0 0.5rem;
	transition: color 0.2s;
}

.calendar-nav:hover {
	color: #0f8ed8;
	text-decoration: none;
}

.calendar-month-year {
	font-weight: 600;
	color: #162447;
	font-size: 0.95rem;
}

.calendar-table {
	width: 100%;
	border-collapse: collapse;
}

.calendar-table thead th {
	padding: 0.5rem 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #666;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.calendar-table tbody td {
	padding: 0.5rem 0.25rem;
	text-align: center;
	font-size: 0.85rem;
	color: #444;
	border: 1px solid transparent;
}

.calendar-table tbody td.today {
	background: #0056a4;
	color: #ffffff;
	border-radius: 4px;
	font-weight: 700;
}

.calendar-table tbody td:not(:empty):hover {
	background: #e0f0ff;
	border-radius: 4px;
	cursor: pointer;
}

