.am-jcal-wrap { position: relative; }

.am-jcal-popover {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 500;
	background: #111827;
	border: 1px solid #1f2937;
	border-radius: 14px;
	padding: 12px;
	box-shadow: 0 12px 32px rgba(0,0,0,.35);
	width: 260px;
}

.am-jcal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #e5e7eb;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
}
.am-jcal__nav {
	background: rgba(255,255,255,.06);
	border: none;
	color: #e5e7eb;
	width: 26px; height: 26px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 15px;
}
.am-jcal__nav:hover { background: rgba(59,130,246,.25); }

.am-jcal__weekdays, .am-jcal__days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}
.am-jcal__weekdays span { font-size: 10.5px; color: #6b7280; padding-bottom: 4px; }
.am-jcal__day {
	font-size: 12.5px;
	color: #d1d5db;
	padding: 6px 0;
	border-radius: 8px;
	cursor: pointer;
}
.am-jcal__day:hover { background: linear-gradient(90deg,#3b82f6,#6366f1); color: #fff; }
