:root {
  --bg-page: #f1fbfa;
  --bg-panel: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --line: #d8ece8;
  --shadow: 0 10px 22px rgba(15, 23, 42, 0.08);

  --accent-strong: #0f766e;
  --accent-soft: #ccfbf1;
  --ok-soft: #dcfce7;
  --warn-soft: #ffedd5;
  --danger-soft: #fee2e2;

  --radius-sm: 8px;
  --radius-md: 12px;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-main);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.app-wrap {
  max-width: 1180px;
  margin: 20px auto;
  padding: 0 14px 20px;
}

.page-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 14px;
}

.muted {
  color: var(--text-muted);
  font-size: 13px;
}

button,
input[type="submit"] {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

input[type="text"],
input[type="date"],
input[type="number"],
input[type="file"],
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 14px;
  background: #fff;
}

@media (max-width: 860px) {
  .app-wrap { margin-top: 12px; }
}
