/* ===== 全域 ===== */

#bv-calendar{
  max-width:1100px;
  margin:0 auto;
  border:2px solid #e5e7eb; /* 外框 */
  border-radius:10px;
  padding:16px;
  background:#fff;
}

/* ===== 標題 ===== */

#bv-calendar .bv-title{
  text-align:center;
  font-size:22px;
  font-weight:600;
  color:#1aa3a3; /* Blue Vista 綠 */
  margin-bottom:16px;
}

/* ===== navigation（月） ===== */

#bv-calendar .bv-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
  padding:8px 12px;
  border:1px solid #e5e7eb; /* 月份框線 */
  border-radius:6px;
}

#bv-calendar .bv-nav button{
  background:none;
  border:none;
  font-size:18px;
  cursor:pointer;
}

/* ===== grid ===== */

#bv-calendar .bv-calendar-grid{
  display:grid !important;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
}

/* ===== 星期 ===== */

#bv-calendar .bv-weekday{
  text-align:center;
  font-weight:600;
  font-size:13px;
  padding:6px 0;
  color:#666;
}

/* ===== 日期格 ===== */

#bv-calendar .bv-day{
  border:1px solid #e5e7eb;
  min-height:110px;
  padding:8px;
  border-radius:8px;
  background:#fff;
}

/* ===== 日期 ===== */

#bv-calendar .bv-date{
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

/* ===== 行程 ===== */

#bv-calendar .bv-slot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  margin-bottom:4px;
  padding:4px 6px;
  border-radius:4px;
}

/* ===== 可預約（含路線未定）===== */

#bv-calendar .bv-slot.available{
  background:#e6f4ff; /* 淺藍 */
}

/* ===== 客滿 ===== */

#bv-calendar .bv-slot.full{
  background:#fde8e8; /* 淺紅 */
}

/* ===== icon ===== */

#bv-calendar .bv-o{
  color:#1e66d0;
}

#bv-calendar .bv-x{
  color:#d13b3b;
}

/* ===== mobile list ===== */

#bv-calendar .bv-m-day{
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:10px;
  margin-bottom:10px;
  background:#fff;
}

#bv-calendar .bv-m-date{
  font-weight:600;
  margin-bottom:6px;
}

#bv-calendar .bv-m-slot{
  display:flex;
  justify-content:space-between;
  padding:8px;
  border-radius:6px;
  margin-bottom:4px;
}

/* 顏色沿用桌機 */

#bv-calendar .bv-m-slot.available{
  background:#e6f4ff;
}

#bv-calendar .bv-m-slot.full{
  background:#fde8e8;
}

/* ===== 店休 ===== */

#bv-calendar .bv-slot.closed{
  background:#f3f4f6;  /* 淺灰 */
  color:#888;
}

#bv-calendar .bv-m-slot.closed{
  background:#f3f4f6;
  color:#888;
}