/**
 * HomeRunner Toolkit — Calendar Hover Tips
 *
 * Styles the one-tap "Select <dates>" button the module grafts into core's
 * calendar tip (#homelocal-calendar-tip, dark #333 bubble, white 12px text,
 * 200px max width). Scoped to the tip so nothing else on the page moves.
 */
#homelocal-calendar-tip.hrtk-actionable {
	max-width: 240px;
}

#homelocal-calendar-tip .hrtk-tip-msg {
	display: block;
}

#homelocal-calendar-tip .hrtk-tip-apply {
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 8px 0 0;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 120ms ease, border-color 120ms ease;
}

#homelocal-calendar-tip .hrtk-tip-apply:hover,
#homelocal-calendar-tip .hrtk-tip-apply:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	border-color: #fff;
	outline: none;
}

#homelocal-calendar-tip .hrtk-tip-apply:active {
	background: rgba(255, 255, 255, 0.28);
}
