/* Fare calendar — তারিখের ঘরে লাইভ ভাড়া */
.fc-pop{position:absolute;z-index:9999;background:#fff;border:1px solid #e3e8ef;border-radius:16px;
  box-shadow:0 18px 50px rgba(15,32,60,.22);padding:12px;width:330px;max-width:calc(100vw - 20px);
  font-family:inherit;color:#12263f}
.fc-pop[hidden]{display:none}
.fc-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:8px}
.fc-title{font-weight:700;font-size:15px}
.fc-nav{border:1px solid #dfe5ee;background:#fff;border-radius:10px;width:32px;height:32px;font-size:16px;
  line-height:1;cursor:pointer;color:#12263f}
.fc-nav:disabled{opacity:.35;cursor:default}
.fc-dow{display:grid;grid-template-columns:repeat(7,1fr);gap:2px;margin-bottom:2px}
.fc-dow span{text-align:center;font-size:11px;color:#8a94a6;font-weight:600}
.fc-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:2px}
.fc-day{border:1px solid transparent;background:#f7f9fc;border-radius:10px;padding:4px 1px 3px;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:44px}
.fc-day.is-empty{background:transparent;cursor:default}
.fc-day:disabled{background:transparent;color:#c3cad6;cursor:default}
.fc-day b{font-size:13px;font-weight:600;line-height:1.1}
.fc-day i{font-style:normal;font-size:9.5px;line-height:1.2;color:#6b7688;margin-top:2px;white-space:nowrap}
.fc-day.is-cheap{background:#e8f8ee}
.fc-day.is-cheap i{color:#12864a;font-weight:700}
.fc-day.is-sel{background:#0e7c86;color:#fff;border-color:#0e7c86}
.fc-day.is-sel i{color:#fff}
.fc-day .fc-dot{width:12px;height:2px;background:#dde3ec;border-radius:2px;margin-top:5px}
.fc-foot{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:10px;
  font-size:11.5px;color:#6b7688}
.fc-foot button{border:0;background:#0e7c86;color:#fff;border-radius:9px;padding:7px 14px;font-size:12.5px;cursor:pointer}
.fc-msg{font-size:11.5px;color:#8a94a6;margin-top:6px;text-align:center}
.fc-loading{display:inline-block;width:10px;height:10px;border:2px solid #cfd7e3;border-top-color:#0e7c86;
  border-radius:50%;animation:fc-spin .7s linear infinite;vertical-align:-1px;margin-right:5px}
@keyframes fc-spin{to{transform:rotate(360deg)}}
@media (max-width:420px){.fc-pop{width:calc(100vw - 20px)}.fc-day{min-height:48px}}
