.i4l-floatcal {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  font-family: inherit;
  opacity: 0.9;
  transition: opacity .2s ease;
}
.i4l-floatcal:hover { opacity: 1; }

.i4l-floatcal__pop {
  width: 260px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e4d9c8;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  backdrop-filter: blur(4px);
}

.i4l-floatcal__head {
  text-align: center;
  font-weight: 800;
  color: #8f632a;
  margin-bottom: 8px;
}

.i4l-floatcal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.i4l-floatcal__dow {
  text-align: center;
  font-size: 12px;
  opacity: .6;
}

.i4l-floatcal__cell {
  height: 28px;
  border-radius: 6px;
  background: #f9f3e7;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #473a2a;
}
.i4l-floatcal__cell--empty { background: transparent; }

/* highlight "vandaag" (subtiel) */
.i4l-floatcal__cell--today {
  background: #b47d36 !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 0 0 2px #fff inset, 0 0 8px rgba(0,0,0,.15);
}

.i4l-floatcal__cta {
  display: block;
  text-align: center;
  background: #b47d36;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.i4l-floatcal__cta:hover { background:#8f632a; }
