/* ============================================================
   courtly.css – Haupt-Stylesheet
   Design: Minimalistisch, Apple-inspiriert
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ---- Reset & Tokens ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #006AFF;
  --blue-hover:  #0055D0;
  --blue-light:  #EBF3FF;
  --green:       #34C759;
  --green-light: #E9F9EE;
  --orange:      #FF9500;
  --orange-light:#FFF4E0;
  --red:         #FF3B30;
  --red-light:   #FFEBEA;
  --gray-50:     #F5F5F7;
  --gray-100:    #EBEBED;
  --gray-200:    #D1D1D6;
  --gray-500:    #8E8E93;
  --gray-700:    #3C3C43;
  --gray-900:    #1D1D1F;
  --white:       #FFFFFF;
  --border:      rgba(0,0,0,0.08);
  --border-md:   rgba(0,0,0,0.13);
  --serif:       'Instrument Serif', 'Georgia', serif;
  --sans:        'DM Sans', system-ui, -apple-system, sans-serif;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.13);
  --transition:  0.18s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ---- Flash Messages ---- */
.flash {
  position: fixed;
  top: 72px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  max-width: 360px;
  animation: slideIn 0.25s ease;
}
.flash-success { background: var(--green-light); color: #1a7a35; border: 0.5px solid rgba(52,199,89,0.25); }
.flash-error   { background: var(--red-light);   color: #b01800; border: 0.5px solid rgba(255,59,48,0.25); }
.flash-info    { background: var(--blue-light);  color: #003ea6; border: 0.5px solid rgba(0,106,255,0.2); }
.flash-close   { background: none; border: none; cursor: pointer; font-size: 18px; color: inherit; line-height: 1; opacity: 0.7; padding: 0; margin-left: auto; }
@keyframes slideIn { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }

/* ---- Navigation ---- */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid var(--border);
  height: 56px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gray-900);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.2px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-tabs {
  display: flex;
  gap: 2px;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 3px;
  margin-left: 8px;
}

.nav-tab {
  padding: 5px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-tab:hover { color: var(--gray-900); }
.nav-tab.active {
  background: var(--white);
  color: var(--gray-900);
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;
}

.nav-logout {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  text-decoration: none;
  transition: all var(--transition);
}
.nav-logout:hover { background: var(--gray-100); color: var(--gray-900); }

/* ---- Page Wrapper ---- */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ---- Page Header ---- */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 16px;
}

.page-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--gray-900);
}
.page-title em { font-style: italic; }
.page-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--white);
  color: var(--gray-900);
  border: 0.5px solid var(--border-md);
}
.btn-secondary:hover { background: var(--gray-50); }

.btn-success {
  background: var(--green);
  color: white;
}
.btn-success:hover { background: #28a745; transform: translateY(-1px); }

.btn-danger {
  background: var(--red-light);
  color: #b01800;
}
.btn-danger:hover { background: #ffd0cd; }

.btn-ghost {
  background: none;
  color: var(--blue);
  border: none;
  padding: 8px 12px;
}
.btn-ghost:hover { background: var(--blue-light); }

.btn-icon {
  width: 36px; height: 36px;
  padding: 0;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: none;
  color: var(--gray-500);
  border: 0.5px solid var(--border);
}
.btn-icon:hover { background: var(--gray-100); color: var(--gray-900); }

/* ---- Stat Cards ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 0.5px solid var(--border);
}
.stat-label { font-size: 12px; color: var(--gray-500); font-weight: 400; margin-bottom: 8px; }
.stat-val   { font-family: var(--serif); font-size: 30px; color: var(--gray-900); line-height: 1; }
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
}
.badge-blue   { background: rgba(0,106,255,0.1); color: #003ea6; }
.badge-green  { background: rgba(52,199,89,0.1); color: #1a7a35; }
.badge-orange { background: rgba(255,149,0,0.1); color: #a05800; }
.badge-red    { background: rgba(255,59,48,0.1); color: #b01800; }
.badge-gray   { background: rgba(0,0,0,0.06);    color: var(--gray-500); }

/* ---- Poll Cards Grid ---- */
.polls-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.poll-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 0.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.poll-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(0,106,255,0.2);
}
.poll-card.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.card-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.accent-active   { background: var(--blue); }
.accent-voted    { background: var(--green); }
.accent-pending  { background: var(--orange); }
.accent-closed   { background: var(--green); }
.accent-disabled { background: var(--gray-200); }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  margin-top: 6px;
}

.card-az {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
}
.card-az-ext {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 3px;
}

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.pill {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}
.pill-blue   { background: rgba(0,106,255,0.09); color: #003ea6; }
.pill-green  { background: rgba(52,199,89,0.09); color: #1a7a35; }
.pill-orange { background: rgba(255,149,0,0.09); color: #a05800; }
.pill-gray   { background: rgba(0,0,0,0.05);    color: var(--gray-500); }
.pill-red    { background: rgba(255,59,48,0.09); color: #b01800; }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 0.5px solid var(--border);
}
.card-date { font-size: 12px; color: var(--gray-500); }
.vote-dots { display: flex; align-items: center; gap: 3px; }
.vote-dot  { width: 7px; height: 7px; border-radius: 50%; }

/* ---- Modals ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-900); }

.modal-title {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 4px;
}
.modal-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0.5px solid rgba(0,0,0,0.15);
  font-size: 14px;
  font-family: var(--sans);
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,106,255,0.12);
}
.form-textarea { resize: vertical; min-height: 80px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%238E8E93' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
}

.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* ---- Slot List (detail view) ---- */
.slot-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 0.5px solid var(--border);
  background: var(--gray-50);
  transition: all var(--transition);
}
.slot-item.has-votes { background: var(--green-light); border-color: rgba(52,199,89,0.25); }
.slot-item.blocked   { background: var(--red-light);   border-color: rgba(255,59,48,0.2); opacity: 0.7; }

.slot-datetime { }
.slot-time-str { font-size: 14px; font-weight: 500; }
.slot-date-str { font-size: 12px; color: var(--gray-500); margin-top: 1px; }

.slot-vote-count { font-size: 13px; font-weight: 500; }
.slot-vote-count.green  { color: #1a7a35; }
.slot-vote-count.gray   { color: var(--gray-500); }
.slot-vote-count.red    { color: #b01800; }

/* ---- Link-Box ---- */
.link-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.link-url { font-size: 13px; color: var(--blue); font-family: monospace; flex: 1; word-break: break-all; }
.copy-btn {
  background: var(--white);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  font-family: var(--sans);
  cursor: pointer;
  color: var(--gray-700);
  white-space: nowrap;
  transition: all var(--transition);
}
.copy-btn:hover { background: var(--gray-50); }
.copy-btn.copied { background: var(--green-light); color: #1a7a35; }

/* ---- Section heading ---- */
.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

/* ---- Calendar ---- */
.calendar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  overflow: hidden;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 0.5px solid var(--border);
}
.cal-month { font-family: var(--serif); font-size: 22px; }
.cal-nav { display: flex; gap: 4px; }
.cal-nav-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border-md);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-500);
  transition: all var(--transition);
}
.cal-nav-btn:hover { background: var(--gray-50); color: var(--gray-900); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 14px 20px 20px;
  gap: 3px;
}
.cal-day-label {
  text-align: center;
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  position: relative;
  color: var(--gray-900);
  transition: background var(--transition);
}
.cal-cell:hover { background: var(--gray-100); }
.cal-cell.other-month { color: rgba(0,0,0,0.2); cursor: default; }
.cal-cell.other-month:hover { background: none; }
.cal-cell.weekend { color: rgba(0,0,0,0.3); }
.cal-cell.has-event { background: rgba(0,106,255,0.08); color: var(--blue); font-weight: 500; }
.cal-cell.today { background: var(--blue) !important; color: white; font-weight: 500; }
.event-dot {
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
}
.cal-cell.today .event-dot { background: white; }

/* ---- Settings Checkboxes ---- */
.day-toggle-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.day-toggle { display: none; }
.day-toggle + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border-md);
  background: var(--gray-50);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.day-toggle:checked + label {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.day-toggle + label:hover { background: var(--gray-100); color: var(--gray-700); }
.day-toggle:checked + label:hover { background: var(--blue-hover); }

/* ---- Voter view (Anwalt) ---- */
body.voter-page { background: #EFF3FA; }

.voter-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.voter-card {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
}

.voter-header {
  background: var(--blue);
  padding: 32px 28px 26px;
  color: white;
}
.voter-court-label {
  font-size: 11px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.voter-az { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.voter-sub { font-size: 13px; opacity: 0.8; margin-top: 4px; }

.voter-body { padding: 28px; }
.voter-intro { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 22px; }

.voter-slot-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }

.voter-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.voter-slot:hover { border-color: var(--blue); background: var(--blue-light); }
.voter-slot.checked { border-color: var(--blue); background: var(--blue-light); }

.slot-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.voter-slot.checked .slot-radio {
  background: var(--blue);
  border-color: var(--blue);
}
.slot-radio-mark {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
  display: none;
}
.voter-slot.checked .slot-radio-mark { display: block; }

.slot-info { flex: 1; }
.slot-date-main { font-size: 14px; font-weight: 500; }
.slot-time-main { font-size: 12px; color: var(--gray-500); }

.slot-vote-badge {
  font-size: 11px;
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 2px 8px;
  border-radius: 20px;
}

.voter-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  transition: all var(--transition);
}
.voter-submit:hover { background: var(--blue-hover); transform: translateY(-1px); }
.voter-submit:active { transform: translateY(0); }

.voter-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.dsgvo-notice {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.6;
}
.dsgvo-notice a { color: var(--blue); text-decoration: none; }
.dsgvo-notice a:hover { text-decoration: underline; }

.voter-success {
  text-align: center;
  padding: 20px 0 4px;
}
.voter-success-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.voter-success-title { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.voter-success-sub   { font-size: 14px; color: var(--gray-500); }

/* ---- Auth Pages ---- */
body.auth-page {
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.auth-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  border: 0.5px solid var(--border);
  box-shadow: var(--shadow-md);
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.auth-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.auth-logo-text { font-family: var(--serif); font-size: 24px; }

.auth-title { font-family: var(--serif); font-size: 26px; margin-bottom: 6px; }
.auth-sub   { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

.auth-link { text-align: center; margin-top: 20px; font-size: 13px; color: var(--gray-500); }
.auth-link a { color: var(--blue); text-decoration: none; font-weight: 500; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .polls-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .page-header { flex-direction: column; align-items: flex-start; }
  .nav-tabs .nav-tab:not(.active) { display: none; }
  .page-title { font-size: 26px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .modal-panel { padding: 24px 20px; }
  .voter-card { border-radius: 0; min-height: 100vh; }
  .voter-wrapper { padding: 0; }
}
