@font-face {
  font-family: 'Gilroy';
  src: url('https://fonts.cdnfonts.com/s/24539/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://fonts.cdnfonts.com/s/24539/Gilroy-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://fonts.cdnfonts.com/s/24539/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #00a54f;
  --primary-hover: #008a42;
  --secondary: #1acf1b;
  --accent: #e5790e;
  --accent-hover: #c66609;
  --foreground: #171717;
  --muted: #6b7280;
  --border: #e5e7eb;
  --background: #ffffff;
}

* { box-sizing: border-box; }
body {
  font-family: 'Gilroy', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f5f6f5;
  color: var(--foreground);
  margin: 0;
  padding: 2rem;
}
.card {
  max-width: 520px;
  margin: 4rem auto;
  background: var(--background);
  padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wide { max-width: 720px; }
h1 { font-size: 1.4rem; font-weight: 700; margin-top: 0; }
.subtitle { color: var(--muted); margin-bottom: 1.5rem; }
label { display: block; font-size: 0.85rem; color: var(--foreground); margin-bottom: 0.3rem; font-weight: 600; }
input[type="password"], input[type="month"] {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
}
button {
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
button:hover { background: var(--primary-hover); }
button:disabled { background: #b6b6b6; cursor: default; }
.error { color: #b00020; font-size: 0.9rem; margin-bottom: 1rem; }
.report-list { list-style: none; padding: 0; margin: 1rem 0 0 0; }
.report-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.report-list a { color: var(--primary); text-decoration: none; font-weight: 600; }
.report-list a:hover { color: var(--primary-hover); text-decoration: underline; }
.report-list .ts { color: var(--muted); font-size: 0.8rem; }
.empty { color: var(--muted); font-size: 0.9rem; }
#status { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted); }
