/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 16 2026 | 20:23:52 */
/* Tooltip container */
.hy-day{ position:relative; }

/* Tooltip bubble */
.hy-tip{
  position:absolute;
  left:10px;
  bottom:10px;
  z-index:50;
  background:#111827;
  color:#fff;
  padding:8px 10px;
  border-radius:10px;
  font-size:12px;
  line-height:1.25;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  max-width:220px;
  display:none;
  pointer-events:none;
  white-space:normal;
}

/* small arrow */
.hy-tip:after{
  content:"";
  position:absolute;
  left:14px;
  bottom:-6px;
  width:0; height:0;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-top:6px solid #111827;
}

/* show tooltip only when booked day hovered */
.hy-day.hy-booked:hover .hy-tip{ display:block; }
