/* 有給休暇の日数計算ツール 専用スタイル */

.verdict {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-left-width: 6px;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0 20px;
}

.verdict.wait { border-color: var(--border); border-left-color: var(--text-muted); }

.verdict-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.verdict-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  margin: 4px 0;
}

.verdict.wait .verdict-value { font-size: 1.4rem; color: var(--text); }

.verdict-sub {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- 数値カード ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  min-width: 0;
}

.stat.primary { background: var(--accent-soft); border-color: var(--accent); }

.stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.stat-value.small { font-size: .95rem; }
.stat.primary .stat-value { color: var(--accent); }

.stat-sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ---------- 付与予定の表 ---------- */

.sched-title {
  font-size: 1.1rem;
  margin-top: 32px;
  border: 0;
  padding: 0;
}

td, th { text-align: center; }
td.tl, th.tl { text-align: left; }
td { font-variant-numeric: tabular-nums; }
td.days { font-weight: 700; }

@media print {
  .verdict { border: 1px solid #999; background: #fff !important; }
}

@media (max-width: 600px) {
  .verdict { padding: 16px; }
  .verdict-value { font-size: 1.6rem; }
  .stat-value { font-size: 1.15rem; }
  th, td { padding: 6px 8px; font-size: .85rem; }
}
