/* ============================================================
   RSVP STUDIO — rsvp-frontend.css
   Dashboard, registratie, login en alle frontend UI
   Font: DM Sans (sans) + Cormorant Garamond (serif display)
   ============================================================ */

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

:root {
  --rose:       #C8857A;
  --rose-dark:  #8B4E48;
  --rose-light: #F0DDD9;
  --gold:       #C9A96E;
  --cream:      #FAF7F2;
  --ink:        #1C1917;
  --ink-mid:    #44403C;
  --ink-light:  #78716C;
  --muted:      #9CA3AF;
  --border:     #E7E0D8;
  --white:      #FFFFFF;
  --green:      #166534;
  --green-bg:   #D6EAD9;
  --red:        #991B1B;
  --red-bg:     #FED7D7;
  --orange-bg:  #FEF3C7;
  --orange:     #92400E;
  --sidebar-w:  240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════
   AUTH PAGINA'S — Registreer & Login
══════════════════════════════════════════════════════════ */

.rsvp-auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--cream);
  position: relative;
}

.rsvp-auth-wrap::before {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,133,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.rsvp-auth-card {
  background: white;
  border-radius: 16px;
  padding: 48px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.rsvp-auth-brand {
  text-align: center;
  margin-bottom: 36px;
}
.rsvp-auth-brand .rsvp-petal { font-size: 32px; display: block; margin-bottom: 12px; }
.rsvp-auth-brand h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
}
.rsvp-auth-brand p { font-size: 14px; color: var(--muted); }

.rsvp-auth-switch {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}
.rsvp-auth-switch a { color: var(--rose); text-decoration: none; }
.rsvp-auth-switch a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   PAKKET KEUZE — Pricing cards
══════════════════════════════════════════════════════════ */

.rsvp-pricing-select { max-width: 960px; margin: 0 auto; text-align: center; }
.rsvp-pricing-select h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 8px;
}
.rsvp-auth-sub { color: var(--muted); margin-bottom: 40px; font-size: 15px; }

.rsvp-plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.rsvp-plan-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.rsvp-plan-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.rsvp-plan-featured {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose), 0 8px 32px rgba(200,133,122,0.12);
}

.rsvp-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.rsvp-plan-header { margin-bottom: 20px; }
.rsvp-plan-name { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.rsvp-plan-price { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--ink); line-height: 1; }
.rsvp-plan-price span { font-size: 16px; color: var(--muted); }

.rsvp-plan-features { list-style: none; margin-bottom: 24px; }
.rsvp-plan-features li { font-size: 14px; color: var(--ink-mid); padding: 5px 0; border-bottom: 1px solid var(--border); }
.rsvp-plan-features li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════════
   DASHBOARD LAYOUT
══════════════════════════════════════════════════════════ */

.rsvp-dash-wrap {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
  background: var(--cream);
}

/* ─── Sidebar ───────────────────────────────────────────── */
.rsvp-sidebar {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.rsvp-sidebar-brand {
  padding: 28px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rsvp-sidebar-logo {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}
.rsvp-sidebar-logo-placeholder { font-size: 28px; margin-bottom: 8px; }
.rsvp-sidebar-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.rsvp-sidebar-plan {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
  display: inline-block;
}
.rsvp-plan-solo     { background: rgba(201,169,110,0.2); color: #C9A96E; }
.rsvp-plan-business { background: rgba(200,133,122,0.2); color: #C8857A; }
.rsvp-plan-agency   { background: rgba(139,78,72,0.3);   color: #F0C9C5; }

/* Nav */
.rsvp-nav { padding: 16px 0; flex: 1; }
.rsvp-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.rsvp-nav-item:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.04); }
.rsvp-nav-item.active { color: white; border-left-color: var(--rose); background: rgba(200,133,122,0.1); }
.rsvp-nav-icon { font-size: 16px; width: 20px; text-align: center; }

.rsvp-sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rsvp-logout {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.rsvp-logout:hover { color: rgba(255,255,255,0.7); }

/* ─── Main content ──────────────────────────────────────── */
.rsvp-main {
  padding: 40px 44px;
  max-width: 1100px;
}

/* Tab header */
.rsvp-tab-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.rsvp-tab-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.rsvp-tab-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════════════════════════════════
   EVENTS GRID
══════════════════════════════════════════════════════════ */

.rsvp-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.rsvp-event-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.rsvp-event-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-1px); }

.rsvp-event-card-top {
  padding: 20px 20px 16px;
  border-top: 3px solid var(--rose);
}
.rsvp-event-card-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
}
.rsvp-event-meta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.rsvp-style-tag {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
}
.rsvp-style-classic  { background: var(--orange-bg); color: var(--orange); }
.rsvp-style-modern   { background: #EDE9FE; color: #5B21B6; }
.rsvp-style-romantic { background: #FCE7F3; color: #9D174D; }

.rsvp-status-dot { font-size: 11px; }
.rsvp-status-active { color: var(--green); }
.rsvp-status-draft  { color: var(--muted); }
.rsvp-status-closed { color: var(--red); }

/* Stat rij */
.rsvp-event-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rsvp-event-stat { text-align: center; }
.rsvp-stat-n { display: block; font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1; }
.rsvp-stat-l { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; letter-spacing: 0.5px; }

/* Progressbar */
.rsvp-progressbar {
  height: 3px;
  background: #F3F4F6;
  display: flex;
  margin: 0;
}
.rsvp-progress-yes { background: #22C55E; transition: width 0.5s; }
.rsvp-progress-no  { background: #EF4444; transition: width 0.5s; }

/* Acties */
.rsvp-event-actions {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FORMULIEREN (event, profiel)
══════════════════════════════════════════════════════════ */

.rsvp-form-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 800px;
}
.rsvp-form-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.rsvp-form-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
}
.rsvp-back-link { font-size: 13px; color: var(--rose); text-decoration: none; }
.rsvp-back-link:hover { text-decoration: underline; }

.rsvp-event-form { padding: 28px; }

.rsvp-form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.rsvp-form-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.rsvp-form-section h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 20px;
}

.rsvp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Gedeelde form fields */
.rsvp-form .rsvp-field,
.rsvp-form-card .rsvp-field { margin-bottom: 16px; }

.rsvp-form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.rsvp-form label .req { color: var(--rose); }

.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form input[type="password"],
.rsvp-form input[type="date"],
.rsvp-form input[type="url"],
.rsvp-form input[type="number"],
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,133,122,0.12);
}
.rsvp-form input.rsvp-disabled { background: #F9F9F9; color: var(--muted); cursor: not-allowed; }
.rsvp-form textarea { min-height: 80px; resize: vertical; }

.rsvp-field-hint { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; }
.rsvp-field-hint a { color: var(--rose); }

/* Stijl picker */
.rsvp-style-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.rsvp-style-option { cursor: pointer; }
.rsvp-style-option input { display: none; }
.rsvp-style-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: all 0.15s;
  background: white;
  position: relative;
}
.rsvp-style-option input:checked + .rsvp-style-card {
  border-color: var(--rose);
  background: var(--rose-light);
  box-shadow: 0 0 0 1px var(--rose);
}
.rsvp-style-card:hover { border-color: var(--rose); }
.rsvp-style-emoji { font-size: 24px; margin-bottom: 8px; }
.rsvp-style-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.rsvp-style-desc { font-size: 11px; color: var(--muted); }
.rsvp-style-lock {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  background: var(--orange-bg);
  color: var(--orange);
  padding: 2px 6px;
  border-radius: 4px;
}
.rsvp-style-locked { opacity: 0.5; cursor: not-allowed; }
.rsvp-style-locked .rsvp-style-card:hover { border-color: var(--border); }

/* Kleur picker */
.rsvp-colors-row { grid-template-columns: repeat(3, 1fr); }
.rsvp-color-wrap { display: flex; gap: 8px; align-items: center; }
.rsvp-color-wrap input[type="color"] {
  width: 44px;
  height: 40px;
  padding: 2px 4px;
  border-radius: 7px;
  flex-shrink: 0;
  cursor: pointer;
}
.rsvp-hex-input { flex: 1; font-family: 'DM Sans', monospace; }

/* Checkboxes */
.rsvp-checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.rsvp-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  transition: all 0.15s;
}
.rsvp-checkbox-label:hover { border-color: var(--rose); background: var(--rose-light); }
.rsvp-checkbox-label input[type="checkbox"] { accent-color: var(--rose); width: 15px; height: 15px; }

/* Form actions */
.rsvp-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

/* ══════════════════════════════════════════════════════════
   KNOPPEN
══════════════════════════════════════════════════════════ */

.rsvp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.rsvp-btn-primary {
  background: var(--rose);
  color: white !important;
  border-color: var(--rose);
}
.rsvp-btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.rsvp-btn-outline {
  background: white;
  color: var(--ink) !important;
  border-color: var(--border);
}
.rsvp-btn-outline:hover { border-color: var(--rose); color: var(--rose) !important; }
.rsvp-btn-full { width: 100%; justify-content: center; }
.rsvp-btn-sm { padding: 7px 12px; font-size: 12px; }
.rsvp-btn-xs { padding: 4px 8px; font-size: 11px; }
.rsvp-btn-danger { border-color: #FED7D7 !important; color: var(--red) !important; background: #FFF5F5 !important; }
.rsvp-btn-danger:hover { background: #FED7D7 !important; }
.rsvp-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ══════════════════════════════════════════════════════════
   GASTEN TABEL
══════════════════════════════════════════════════════════ */

.rsvp-event-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.rsvp-select-wrap { position: relative; }
.rsvp-select-wrap select {
  padding: 9px 36px 9px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
  min-width: 240px;
}
.rsvp-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

.rsvp-guests-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.rsvp-guests-actions { display: flex; gap: 8px; }

.rsvp-file-btn { display: none; }

/* CSV hint */
.rsvp-csv-hint {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  cursor: pointer;
}
.rsvp-csv-hint summary { font-weight: 500; color: var(--rose); }
.rsvp-csv-hint pre {
  background: var(--cream);
  padding: 10px;
  border-radius: 4px;
  font-size: 11px;
  margin-top: 10px;
  overflow-x: auto;
}

/* Filter tabs */
.rsvp-filter-tabs { display: flex; gap: 4px; margin-bottom: 16px; flex-wrap: wrap; }
.rsvp-filter-tab {
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
  color: var(--muted);
  background: white;
  transition: all 0.15s;
}
.rsvp-filter-tab:hover { border-color: var(--rose); color: var(--rose) !important; }
.rsvp-filter-tab.active { background: var(--rose); border-color: var(--rose); color: white !important; }

/* Tabel */
.rsvp-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border); }
.rsvp-table { width: 100%; border-collapse: collapse; background: white; font-size: 13px; }
.rsvp-table thead tr { background: var(--ink); }
.rsvp-table thead th {
  padding: 12px 14px;
  text-align: left;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.rsvp-table tbody tr { border-bottom: 1px solid #F3F4F6; transition: background 0.1s; }
.rsvp-table tbody tr:last-child { border-bottom: none; }
.rsvp-table tbody tr:hover { background: var(--cream); }
.rsvp-table td { padding: 12px 14px; color: var(--ink-mid); vertical-align: middle; }
.rsvp-muted { color: var(--muted); font-size: 12px; }

/* Status pills */
.rsvp-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}
.rsvp-pill-pending   { background: var(--orange-bg); color: var(--orange); }
.rsvp-pill-attending { background: var(--green-bg);  color: var(--green); }
.rsvp-pill-declined  { background: var(--red-bg);    color: var(--red); }
.rsvp-pill-no_response { background: #F3F4F6; color: var(--muted); }

/* Kopieer URL knop */
.rsvp-copy-url-btn { font-family: 'DM Sans', sans-serif; }
.rsvp-copy-url-btn.copied { background: var(--green-bg) !important; color: var(--green) !important; }

/* ══════════════════════════════════════════════════════════
   PAKKET TAB
══════════════════════════════════════════════════════════ */

.rsvp-pakket-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 32px;
  max-width: 700px;
}
.rsvp-pakket-current { margin-bottom: 28px; }
.rsvp-pakket-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 4px;
}
.rsvp-pakket-price { font-size: 18px; color: var(--rose); margin-bottom: 8px; }
.rsvp-pakket-status { font-size: 13px; margin-bottom: 4px; }
.rsvp-pakket-since { font-size: 12px; }
.rsvp-status-active    { color: var(--green); }
.rsvp-status-past_due  { color: #D97706; }
.rsvp-status-cancelled { color: var(--red); }
.rsvp-status-inactive  { color: var(--muted); }

.rsvp-pakket-actions { margin-bottom: 28px; }

.rsvp-pakket-compare h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.rsvp-compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.rsvp-compare-table th, .rsvp-compare-table td { padding: 10px 14px; border: 1px solid var(--border); }
.rsvp-compare-table thead tr { background: var(--cream); }
.rsvp-compare-table th.current { background: var(--rose-light); color: var(--rose-dark); }
.rsvp-compare-table td:first-child { font-weight: 500; color: var(--ink); }

/* ══════════════════════════════════════════════════════════
   PROFIEL TAB
══════════════════════════════════════════════════════════ */

.rsvp-current-logo {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
  background: white;
}

/* ══════════════════════════════════════════════════════════
   NOTICES & STATES
══════════════════════════════════════════════════════════ */

.rsvp-notice {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.rsvp-notice-success { background: var(--green-bg);  color: var(--green); }
.rsvp-notice-warn    { background: var(--orange-bg); color: var(--orange); }
.rsvp-notice-error   { background: var(--red-bg);    color: var(--red); }

.rsvp-empty-state {
  text-align: center;
  padding: 64px 24px;
  background: white;
  border-radius: 12px;
  border: 1px dashed var(--border);
}
.rsvp-empty-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.rsvp-empty-state h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; margin-bottom: 8px; }
.rsvp-empty-state p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

.rsvp-limit-msg {
  font-size: 13px;
  color: var(--orange);
  background: var(--orange-bg);
  padding: 10px 16px;
  border-radius: 7px;
}
.rsvp-limit-msg a { color: var(--rose); font-weight: 500; }

#rsvp-register-msg, #rsvp-login-msg, #rsvp-event-msg,
#rsvp-profile-msg, #rsvp-import-msg {
  margin: 12px 0;
  font-size: 14px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .rsvp-dash-wrap { grid-template-columns: 1fr; }
  .rsvp-sidebar { position: static; height: auto; flex-direction: row; flex-wrap: wrap; }
  .rsvp-sidebar-brand { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.06); }
  .rsvp-nav { display: flex; padding: 8px; }
  .rsvp-main { padding: 24px 20px; }
  .rsvp-plan-cards { grid-template-columns: 1fr; }
  .rsvp-form-row { grid-template-columns: 1fr; }
  .rsvp-style-picker { grid-template-columns: 1fr; }
  .rsvp-checkboxes { grid-template-columns: repeat(2, 1fr); }
  .rsvp-colors-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .rsvp-auth-card { padding: 32px 24px; }
  .rsvp-events-grid { grid-template-columns: 1fr; }
  .rsvp-checkboxes { grid-template-columns: 1fr; }
}
