@charset "utf-8";

/* カレンダー共通 */
.calendar {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.calendar th,
.calendar td {
  padding: 0.35rem 0.4rem;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.calendar thead {
  background: #f3f4f6;
}

/* ===== 状態（管理画面基準） ===== */
.status0 {
  background: #fff;
}

.status1, .is-closed, td.red {
  background: #fee2e2; /* 赤 */
}

.status2, td.green {
  background: #e5ffe0; /* 緑 */
}

.status3, .is-emergency, td.blue {
  background: #e0f2fe; /* 青 */
}

/* 空白セル */
.calendar td:empty {
  background: #f9fafb;
}

/* 土日ちょい強調（任意） */
.calendar td:nth-child(1),
.calendar th:nth-child(1){
  color: #d00;
}
.calendar td:nth-child(7),
.calendar th:nth-child(7){
  color: #00f;
}