@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #1a56db;
  --primary-hover: #1347b8;
  --primary-active: #0f3a96;
  --secondary: #6b7280;
  --secondary-hover: #4b5563;
  --bg: #f9fafb;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
}

* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
}

main {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

h1 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.25rem;
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;

  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;

  background-color: var(--primary);
  color: white;
  text-decoration: none;

  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  white-space: pre;
  transition: background-color 0.15s;
}
.btn:hover {
  background-color: var(--primary-hover);
}
.btn:active {
  background-color: var(--primary-active);
}

.btn-secondary {
  background-color: var(--secondary);
}
.btn-secondary:hover {
  background-color: var(--secondary-hover);
}

table {
  border-collapse: collapse;
  width: 100%;
}

td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

td.label {
  font-weight: 600;
  color: var(--text-muted);
  width: 140px;
}
