/* Functional styling only — real UI design gets dropped in at Phase 4. */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #fafafa;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.topbar h1 {
  font-size: 1.25rem;
  margin: 0;
}

.link-btn {
  background: none;
  border: none;
  color: #3a5;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 320px;
}

.login-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.6rem;
}

.login-form input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-form button {
  margin-top: 1rem;
  padding: 0.6rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background: #1f6f5c;
  color: white;
  cursor: pointer;
}

.login-form button:hover {
  background: #175646;
}

.error {
  color: #b00020;
  font-size: 0.9rem;
}

.status {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
}

.report-table th,
.report-table td {
  text-align: left;
  padding: 0.5rem;
  border-bottom: 1px solid #ddd;
}

.report-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #666;
}
