.month-picker-bar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-divider);
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
.month-picker-input {
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text-1);
  text-align: center;
}

.stat-card {
  display: flex;
  background: linear-gradient(135deg, #004494, #0058BD);
  padding: 16px;
  margin: 12px;
  border-radius: var(--r-xl);
  box-shadow: 0 4px 16px rgba(0, 68, 148, 0.25);
}
.stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 22px; font-weight: 700; color: #FFFFFF; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.65); margin-top: 3px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); margin: 4px 0; }

.calendar-card { padding: 12px; margin: 8px 12px; }
.cal-week-header { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px; }
.cal-week-label { text-align: center; font-size: 11px; color: var(--c-text-3); font-weight: 600; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-cell {
  display: flex; flex-direction: column; align-items: center;
  padding: 5px 0;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.cal-cell-out { opacity: 0.3; }
.cal-cell-today .cal-day-num {
  background: var(--c-primary); color: #fff; border-radius: 50%;
  width: 22px; height: 22px; line-height: 22px; text-align: center;
}
.cal-cell-selected { background: var(--c-primary-light); border-radius: var(--r-md); }
.cal-day-num { font-size: 13px; color: var(--c-text-1); width: 22px; height: 22px; line-height: 22px; text-align: center; }
.cal-dot-wrap { height: 6px; display: flex; align-items: center; }
.cal-dot { width: 5px; height: 5px; border-radius: 50%; }
.cal-dot-normal { background: var(--c-primary); }
.cal-dot-absent { background: var(--c-error); }

.day-info-bar {
  margin: 0 12px 8px;
  padding: 12px;
  border-left: 3px solid var(--c-primary);
}
.dib-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.dib-date { font-size: 14px; font-weight: 600; color: var(--c-text-1); }
.dib-no-record { font-size: 12px; color: var(--c-text-3); }
.dib-times {
  display: flex; align-items: center;
  background: var(--c-surface-low);
  border-radius: var(--r-md);
  padding: 10px 0;
  margin-bottom: 8px;
}
.dib-time-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.dib-sep { width: 1px; height: 20px; background: var(--c-divider); }
.dib-time-val { font-size: 15px; font-weight: 600; color: var(--c-text-1); }
.dib-time-label { font-size: 11px; color: var(--c-text-3); }
.dib-hash {
  display: flex; align-items: center; gap: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--c-divider);
  cursor: pointer;
}
.dib-hash-label { font-size: 10px; color: var(--c-text-3); flex-shrink: 0; }
.dib-hash-val { font-size: 10px; color: var(--c-text-3); font-family: monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 480px;
  display: flex;
  background: var(--c-surface);
  border-top: 1px solid var(--c-divider);
}
.nav-item { flex: 1; text-align: center; padding: 12px 0; font-size: 13px; color: var(--c-text-3); text-decoration: none; }
.nav-item-active { color: var(--c-primary); font-weight: 600; }
