:root{--mph-accent:#0E8C8B;--mph-sand:#f6f1e7;--mph-ink:#1f2a2e;--mph-muted:#8a9aa0;}
.mph-calendar{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  max-width:560px;margin:0 auto;color:var(--mph-ink);
  background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:18px;overflow:hidden;
  box-shadow:0 20px 50px -34px rgba(6,59,71,.5);
}
.mph-head{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;
  color:#fff;background:linear-gradient(135deg,var(--mph-accent),#063b47);}
.mph-title{font-weight:700;font-size:16px;text-transform:capitalize;}
.mph-nav{background:rgba(255,255,255,.18);border:none;color:#fff;width:34px;height:34px;border-radius:50%;font-size:18px;cursor:pointer;line-height:1;}
.mph-nav:hover{background:rgba(255,255,255,.32);}
.mph-weekdays{display:grid;grid-template-columns:repeat(7,1fr);padding:10px 8px 0;}
.mph-weekdays span{text-align:center;font-size:11px;font-weight:700;color:var(--mph-muted);text-transform:uppercase;letter-spacing:.5px;}
.mph-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;padding:8px;}
.mph-cell{min-height:62px;border-radius:10px;padding:5px 4px;background:var(--mph-sand);display:flex;flex-direction:column;align-items:center;gap:2px;cursor:pointer;position:relative;transition:transform .1s ease,box-shadow .1s ease;}
.mph-cell.empty{background:transparent;cursor:default;}
.mph-cell.has-tour{background:#e6f4f3;}
.mph-cell:not(.empty):hover{transform:translateY(-1px);box-shadow:0 6px 14px -8px rgba(14,140,139,.6);}
.mph-cell.sel{outline:2px solid var(--mph-accent);outline-offset:-2px;}
.mph-cell.today .mph-day{background:var(--mph-accent);color:#fff;border-radius:50%;width:22px;height:22px;display:flex;align-items:center;justify-content:center;}
.mph-day{font-size:13px;font-weight:600;}
.mph-mini{font-size:10px;line-height:1.2;color:var(--mph-ink);text-align:center;}
.mph-mini.off{color:var(--mph-muted);font-style:italic;}
.mph-pip{position:absolute;bottom:5px;width:6px;height:6px;border-radius:50%;background:var(--mph-accent);}
.mph-pip.off{background:#cdd6d6;}
.mph-legend{font-size:11.5px;color:var(--mph-muted);padding:0 16px 10px;display:flex;align-items:center;gap:4px;}
.mph-dot{display:inline-block;width:9px;height:9px;border-radius:50%;background:var(--mph-accent);}
.mph-dot.off{background:#cdd6d6;}
.mph-detail{padding:0 16px;max-height:0;overflow:hidden;transition:max-height .2s ease;}
.mph-detail.show{max-height:240px;padding-bottom:16px;}
.mph-detail-date{font-weight:700;font-size:14px;margin:6px 0 10px;text-transform:capitalize;}
.mph-line{display:flex;justify-content:space-between;align-items:center;gap:10px;font-size:13.5px;padding:9px 0;border-top:1px solid #f0f0f0;}
.mph-line b{color:var(--mph-accent);white-space:nowrap;}
.mph-line .off{color:var(--mph-muted);font-weight:600;font-style:italic;}

@media(max-width:480px){
  .mph-mini{display:none;}
  .mph-cell{min-height:46px;}
  .mph-pip{bottom:6px;}
}

.mph-heading{font-family:inherit;font-weight:700;font-size:16px;text-align:center;padding:14px 16px 0;color:var(--mph-ink);}

.mph-cell.blocked{background:#f3e6e6;}
.mph-cell.blocked .mph-day{color:#b32d2e;}
.mph-cell.blocked .mph-pip{background:#d99;}

.mph-tide{font-size:9.5px;line-height:1.2;color:var(--mph-accent);font-weight:600;}
.mph-cell:not(.has-tour) .mph-tide{color:var(--mph-muted);}
