/* ===== 天天餵食打卡鐘 — Components (v4.0 Bold) ===== */

/* --- Header --- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 4px 12px;
  background: transparent;
  position: relative;
  flex-shrink: 0;
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 219, 154, 0.12), transparent);
}

.cat-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(245, 219, 154, 0.55);
  box-shadow:
    0 0 0 6px rgba(176, 137, 104, 0.15),
    0 0 30px -4px rgba(245, 219, 154, 0.3);
  flex-shrink: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  background: #3a3530;
}

.header-text {
  flex: 1;
  min-width: 0;
}

.greeting {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--seiji);
  letter-spacing: 3px;
  opacity: 0.9;
}

.clock {
  font-family: "JetBrains Mono", monospace;
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--kenpohzome);
  text-shadow:
    0 0 80px rgba(245, 219, 154, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

.date-text {
  font-size: 14px;
  color: var(--tonoko-dark);
  margin-top: 4px;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* --- Cards Area --- */
.cards-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

/* --- Meal Cards --- */
.meal-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, rgba(50, 54, 52, 0.5) 0%, rgba(38, 41, 39, 0.5) 50%, rgba(34, 37, 36, 0.5) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 24px;
  position: relative;
  border: 1px solid rgba(245, 219, 154, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
  transition:
    border-color 0.6s ease,
    box-shadow 0.6s ease,
    flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s ease;
  min-height: 120px;
}

/* 主角卡片 — 佔更多空間 */
.meal-card.is-hero {
  flex: 3;
  padding: 16px 20px 14px;
  min-height: 0;
}

/* 卡片頂部裝飾線 */
.meal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 137, 104, 0.35), transparent);
}

.meal-card.fed {
  border-color: rgba(245, 219, 154, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 40px -8px rgba(245, 219, 154, 0.12),
    0 0 0 1px rgba(245, 219, 154, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  flex: 0 0 auto;
}

.meal-card.overdue {
  animation: overdueBreath 4s ease-in-out infinite;
}

@keyframes overdueBreath {

  0%,
  100% {
    border-color: rgba(228, 173, 147, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  50% {
    border-color: rgba(228, 173, 147, 0.5);
    box-shadow: 0 0 30px -4px rgba(228, 173, 147, 0.2);
  }
}

/* --- Meal Top --- */
.meal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.meal-card.is-hero .meal-top {
  margin-bottom: 6px;
}

.meal-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meal-icon {
  font-size: 36px;
}

.meal-name {
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--kenpohzome);
}

/* 卡片標題日期前綴 */
.meal-date-prefix {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-right: 4px;
  vertical-align: baseline;
}

.meal-date-prefix.today {
  color: var(--seiji);
}

.meal-date-prefix.yesterday {
  color: var(--nadeshiko);
}

.meal-sub {
  font-size: 15px;
  color: rgba(245, 219, 154, 0.6);
  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: 500;
}

/* 主角卡片放大 */
.meal-card.is-hero .meal-name {
  font-size: 48px;
}

.meal-card.is-hero .meal-icon {
  font-size: 42px;
}

.meal-card.is-hero .meal-sub {
  font-size: 19px;
}

/* --- Status Badge --- */
.status-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.status-badge.waiting {
  background: rgba(232, 228, 220, 0.06);
  border: 1.5px dashed rgba(232, 228, 220, 0.15);
}

.status-badge.done {
  background: rgba(176, 137, 104, 0.15);
  border: 1.5px solid rgba(176, 137, 104, 0.4);
  animation: badgeFadeIn 0.5s ease;
}

.status-badge.overdue {
  background: rgba(228, 173, 147, 0.12);
  border: 1.5px solid rgba(228, 173, 147, 0.4);
  animation: overdueBreathBadge 4s ease-in-out infinite;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes overdueBreathBadge {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* --- Feed Button --- */
.feed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  background: var(--seiji);
  color: var(--bg-sumi);
  font-family: inherit;
  font-size: 26px;
  font-weight: 700;
  padding: 26px 24px;
  border-radius: 60px;
  cursor: pointer;
  box-shadow:
    0 6px 0 var(--seiji-dim),
    0 10px 24px -4px rgba(176, 137, 104, 0.3);
  transition: transform 0.1s, box-shadow 0.1s, background-color 0.3s;
  letter-spacing: 3px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  min-height: 68px;
}

/* 主角卡片內的按鈕 — 填滿剩餘空間 */
.meal-card.is-hero .feed-btn {
  flex: 1;
  font-size: 36px;
  padding: 0 28px;
  min-height: 0;
  margin-top: 8px;
  letter-spacing: 4px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shimmer 金屬光澤 */
.feed-btn:not(.done):not(.readonly):not(:disabled)::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 45%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.1) 55%,
      transparent 70%);
  animation: btnShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShimmer {

  0%,
  100% {
    left: -60%;
  }

  50% {
    left: 120%;
  }
}

.feed-btn:not(:disabled):active {
  transform: translateY(4px) scale(0.97);
  box-shadow:
    0 2px 0 var(--seiji-dim),
    0 3px 8px -2px rgba(176, 137, 104, 0.2);
}

.feed-btn.breakfast {
  background: linear-gradient(135deg, #F5DB9A 0%, #f0d48e 50%, #e8c878 100%);
  box-shadow:
    0 6px 0 var(--seiji-dim),
    0 10px 24px -4px rgba(176, 137, 104, 0.3);
}

.feed-btn.dinner {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5EDDF 100%);
  color: #4A3928;
  box-shadow:
    0 7px 0 #CDAC7E,
    0 14px 30px -5px rgba(205, 172, 126, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.05),
    inset 0 2px 12px rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.feed-btn.dinner:not(:disabled):active {
  transform: translateY(5px) scale(0.97);
  box-shadow:
    0 2px 0 #CDAC7E,
    0 4px 10px -2px rgba(205, 172, 126, 0.3),
    inset 0 -2px 5px rgba(0, 0, 0, 0.05),
    inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

/* 已餵食 — 雙行佈局 */
.feed-btn.done {
  background: linear-gradient(135deg, var(--wakatake), #967154);
  color: #faf3e8;
  box-shadow:
    0 4px 0 #7a5f42,
    0 6px 20px -4px rgba(176, 137, 104, 0.3);
  transform: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 60px;
  padding: 14px 24px;
  border: none;
  margin-top: 0;
  letter-spacing: 3px;
  min-height: auto;
}

/* 上排：狀態文字 */
.fed-row-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.2;
}

/* 下排：日期 + 時間 + 相對時間 */
.fed-row-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.8;
  line-height: 1;
}

.feed-btn.done .fed-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 15px;
  flex-shrink: 0;
}

/* 禁用（未授權/純禁用） 不可覆蓋 readonly 樣式 */
.feed-btn:disabled:not(.done):not(.readonly) {
  background: linear-gradient(180deg, #FFFFFF 0%, #EDEDED 100%) !important;
  color: #8C847A;
  box-shadow:
    0 7px 0 #C4C0BA,
    0 14px 28px -5px rgba(196, 192, 186, 0.4),
    inset 0 -2px 5px rgba(0, 0, 0, 0.05),
    inset 0 2px 10px rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0.9;
  cursor: not-allowed;
  font-weight: 600;
}

/* 日期標籤（今天/昨天） */
.fed-date-label {
  font-weight: 600;
  color: rgba(245, 219, 154, 0.9);
}

.fed-time {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  color: rgba(250, 243, 232, 0.85);
}

.fed-relative {
  font-weight: 400;
  color: rgba(250, 243, 232, 0.5);
}

/* 超過 4 小時：按鈕漸暗 */
.feed-btn.done.stale {
  background: linear-gradient(135deg, #7a6e5e, #6b5d4e);
  box-shadow:
    0 4px 0 #5a4f3e,
    0 6px 16px -4px rgba(120, 100, 80, 0.2);
}

.feed-btn.done.stale .fed-date-label {
  color: rgba(245, 219, 154, 0.55);
}

.feed-btn.done.stale .fed-time {
  color: rgba(250, 243, 232, 0.5);
}

.feed-btn.done.stale .fed-check {
  background: rgba(255, 255, 255, 0.12);
}

/* 昨天殘留：加入虛線邊框提醒 */
.feed-btn.done.yesterday {
  background: linear-gradient(135deg, #6b5f52, #5e524a);
  border: 1.5px dashed rgba(228, 173, 147, 0.35);
  box-shadow:
    0 3px 0 #4e4438,
    0 4px 12px -4px rgba(100, 85, 70, 0.15);
}

.feed-btn.done.yesterday .fed-date-label {
  color: var(--nadeshiko);
  font-weight: 700;
}

.meal-card.is-hero .fed-time {
  font-size: 26px;
}

/* 逾時按鈕 */
.feed-btn.overdue-btn {
  background: linear-gradient(135deg, var(--nadeshiko), #d47a64);
  color: var(--bg-sumi);
  box-shadow:
    0 6px 0 #c49a85,
    0 8px 20px -4px rgba(228, 173, 147, 0.3);
  animation: btnBreath 4s ease-in-out infinite;
}

@keyframes btnBreath {

  0%,
  100% {
    box-shadow: 0 6px 0 #c49a85, 0 6px 16px -2px rgba(228, 173, 147, 0.15);
  }

  50% {
    box-shadow: 0 6px 0 #c49a85, 0 8px 24px -2px rgba(228, 173, 147, 0.35);
  }
}

/* 逾時文字 */
.overdue-text {
  display: none;
  font-size: 14px;
  color: var(--nadeshiko);
  text-align: center;
  margin-top: 6px;
  letter-spacing: 1px;
  font-weight: 500;
  flex-shrink: 0;
}

.overdue-text.show {
  display: block;
  animation: textFadeIn 0.8s ease;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 唯讀模式 */
.feed-btn.readonly {
  background: rgba(232, 228, 220, 0.04) !important;
  color: var(--tonoko-dark) !important;
  box-shadow: none !important;
  cursor: default;
  font-size: 20px;
  padding: 24px 20px;
  letter-spacing: 2px;
  border: 1.5px dashed rgba(232, 228, 220, 0.15);
  min-height: auto;
}

.readonly-hint {
  text-align: center;
  font-size: 11px;
  color: var(--tonoko-dark);
  opacity: 0.45;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* --- Feed Glow --- */
@keyframes feedGlow {
  0% {
    box-shadow: 0 4px 16px rgba(67, 52, 27, 0.04);
  }

  40% {
    box-shadow: 0 0 28px -4px rgba(245, 219, 154, 0.25);
  }

  100% {
    box-shadow: 0 4px 16px rgba(67, 52, 27, 0.04);
  }
}

.meal-card.just-fed {
  animation: feedGlow 0.6s ease;
}

/* --- Footer --- */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 10px;
  color: var(--tonoko-dark);
  padding-top: 4px;
  letter-spacing: 1.5px;
  opacity: 0.4;
  flex-shrink: 0;
}

.report-trigger {
  background: rgba(245, 219, 154, 0.08);
  border: 1px solid rgba(245, 219, 154, 0.15);
  color: var(--seiji);
  font-family: "Noto Sans TC", sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.report-trigger:active {
  transform: scale(0.95);
  background: rgba(245, 219, 154, 0.15);
}

/* --- Dialog Overlay --- */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.overlay.show {
  display: flex;
}

.dialog {
  background: #333835;
  border: 1px solid rgba(232, 228, 220, 0.08);
  border-radius: var(--radius);
  padding: var(--space-phi2) var(--space-phi);
  max-width: 340px;
  width: 88%;
  text-align: center;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  animation: dialogFadeIn 0.25s ease-out;
}

@keyframes dialogFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dialog-emoji {
  font-size: 42px;
  margin-bottom: var(--space-sm);
}

.dialog h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: 1px;
  color: var(--shironeri);
}

.dialog p {
  font-size: 14px;
  color: var(--tonoko-dark);
  margin-bottom: var(--space-phi);
  line-height: 1.6;
}

.dialog-btns {
  display: flex;
  gap: var(--space-sm);
}

.dialog-btns button {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease;
}

.dialog-btns button:active {
  transform: scale(0.96);
}

.d-cancel {
  background: rgba(232, 228, 220, 0.08);
  color: var(--tonoko-dark);
}

.d-ok {
  background: linear-gradient(135deg, var(--wakatake), #967154);
  color: var(--bg-sumi);
}

/* --- Auth Toast --- */
.auth-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(45, 42, 38, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(176, 137, 104, 0.35);
  border-radius: 18px;
  padding: 32px 40px;
  text-align: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.auth-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.auth-toast .toast-icon {
  font-size: 44px;
  margin-bottom: 10px;
}

.auth-toast .toast-text {
  font-size: 16px;
  color: var(--shironeri);
  font-weight: 600;
  letter-spacing: 1px;
}

.auth-toast .toast-sub {
  font-size: 12px;
  color: var(--tonoko-dark);
  margin-top: 4px;
}

/* Long-press */
@keyframes avatarPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

.cat-avatar.pressing {
  animation: avatarPulse 0.6s ease infinite;
  border-color: rgba(245, 219, 154, 0.8);
  box-shadow:
    0 0 0 6px rgba(176, 137, 104, 0.25),
    0 0 40px -4px rgba(245, 219, 154, 0.4);
}

/* ===== 週報 Overlay ===== */
.report-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 150;
  align-items: flex-end;
  justify-content: center;
  animation: reportBgIn 0.3s ease;
}

.report-overlay.show {
  display: flex;
}

@keyframes reportBgIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.report-panel {
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  background: linear-gradient(170deg, #2d302e 0%, #242724 100%);
  border: 1px solid rgba(245, 219, 154, 0.1);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: reportSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes reportSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 12px;
  border-bottom: 1px solid rgba(245, 219, 154, 0.08);
  flex-shrink: 0;
}

.report-title {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--kenpohzome);
  letter-spacing: 2px;
  margin: 0;
}

.report-close {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(232, 228, 220, 0.06);
  color: var(--tonoko-dark);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}

.report-close:active {
  background: rgba(232, 228, 220, 0.12);
}

.report-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 28px;
  -webkit-overflow-scrolling: touch;
}

.report-loading {
  text-align: center;
  color: var(--tonoko-dark);
  font-size: 16px;
  padding: 60px 0;
  letter-spacing: 2px;
}

/* 統計卡片 */
.report-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.stat-card {
  background: rgba(245, 219, 154, 0.04);
  border: 1px solid rgba(245, 219, 154, 0.08);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
}

.stat-card.wide {
  grid-column: 1 / -1;
}

.stat-emoji {
  font-size: 24px;
  margin-bottom: 6px;
}

.stat-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--seiji);
  line-height: 1.2;
}

.stat-card.wide .stat-value {
  font-size: 22px;
}

.stat-label {
  font-size: 12px;
  color: var(--tonoko-dark);
  margin-top: 4px;
  letter-spacing: 1px;
}

.stat-detail {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(245, 219, 154, 0.5);
  margin-top: 2px;
}

/* 區段標題 */
.report-section {
  margin-bottom: 20px;
}

.report-section-title {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--kenpohzome);
  letter-spacing: 2px;
  margin: 0 0 12px 0;
  opacity: 0.8;
}

/* 圖表容器 */
.report-chart-container {
  background: #2a2d2b;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(245, 219, 154, 0.06);
}

.report-chart-container canvas {
  width: 100%;
  height: 200px;
  display: block;
}

/* 歷史表格 */
.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.report-table thead th {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 600;
  color: var(--seiji);
  opacity: 0.6;
  padding: 8px 6px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(245, 219, 154, 0.08);
}

.report-table tbody tr {
  border-bottom: 1px solid rgba(245, 219, 154, 0.04);
}

.report-table tbody tr:last-child {
  border-bottom: none;
}

.report-table td {
  padding: 10px 6px;
  text-align: center;
  vertical-align: middle;
}

.date-col {
  color: var(--shironeri);
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 13px;
}

.day-label {
  display: block;
  font-size: 10px;
  color: var(--tonoko-dark);
  font-family: "Noto Sans TC", sans-serif;
  opacity: 0.6;
  margin-top: 2px;
}

.status-col {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
}

.status-col.fed {
  color: var(--wakatake);
}

.status-col.missed {
  color: var(--nadeshiko);
  opacity: 0.4;
}