@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500&display=swap');

body.citizen {
  font-family: 'Inter', sans-serif;
  background: #f4f2ec;
  margin: 0;
  min-height: 100vh;
}

.citizen-header {
  background: #1a3a2e;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.citizen-header h1 {
  font-family: 'DM Serif Display', serif;
  color: #f0ede5;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
}

.btn-logout {
  background: transparent;
  border: 1px solid rgba(240, 237, 229, 0.35);
  color: #c8c0b0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-logout:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f0ede5;
}

/* Card wrapper */
.citizen-card {
  max-width: 640px;
  margin: 2.5rem auto;
  background: #ffffff;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* Row layout */
.record-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.5rem;
  border-left: 2px solid transparent;
  transition: border-color 0.12s, background 0.12s;
}

.record-row + .record-row {
  border-top: 0.5px solid rgba(0, 0, 0, 0.07);
}

.record-row:hover {
  border-left-color: #7a9e8a;
  background: #f7f5f0;
}

.record-label {
  font-size: 13px;
  color: #6b7280;
  flex-shrink: 0;
}

.record-value {
  font-size: 13px;
  font-weight: 500;
  color: #1c1c1a;
  text-align: right;
}