@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --primary: #e11d48;
  --primary-hover: #be123c;
  --primary-light: #fff1f2;
  --primary-border: #fecdd3;
  --secondary: #6366f1;
  --secondary-light: #eef2ff;
  --bg-gradient: linear-gradient(135deg, #fdf4f5 0%, #f8fafc 50%, #f5f3ff 100%);
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 16px 32px -4px rgba(225, 29, 72, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 20px);
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', sans-serif;
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

.admin-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

/* App Header */
.app-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.brand-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.app-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e1b4b;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.25;
}

.app-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Card Styling */
.survey-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.survey-card:hover {
  border-color: #cbd5e1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(225, 29, 72, 0.25);
}

.q-badge.info-badge {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 3px 8px rgba(99, 102, 241, 0.25);
}

.q-title-wrap {
  flex: 1;
}

.q-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.q-subtext {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 2px;
}

.optional-tag {
  font-size: 0.72rem;
  background: #f1f5f9;
  color: #64748b;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 6px;
  display: inline-block;
}

/* Yes / No Toggle buttons */
.yes-no-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.choice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border: 2px solid var(--border-color);
  background: #ffffff;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  touch-action: manipulation;
}

.choice-btn:active {
  transform: scale(0.98);
}

.choice-btn.selected-yes {
  background: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.15);
}

.choice-btn.selected-no {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.15);
}

/* Relief Rating Scale (1 to 5) */
.rating-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-color);
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rating-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.rating-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  border: 2px solid var(--border-color);
  background: #fff;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  touch-action: manipulation;
}

.rating-chip .rate-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #334155;
}

.rating-chip .rate-label {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.15;
  font-weight: 500;
}

.rating-chip:active {
  transform: scale(0.96);
}

.rating-chip.selected {
  border-color: #e11d48;
  background: #fff1f2;
  box-shadow: 0 3px 10px rgba(225, 29, 72, 0.18);
}

.rating-chip.selected .rate-num {
  color: #e11d48;
}

.rating-chip.selected .rate-label {
  color: #9f1239;
  font-weight: 600;
}

/* Text Inputs & Textareas - 16px to prevent iOS auto zoom */
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
}

.form-textarea {
  min-height: 90px;
  resize: vertical;
}

.form-input:focus, .form-textarea:focus {
  background: #ffffff;
  border-color: #f43f5e;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.12);
}

.input-hint {
  font-size: 0.74rem;
  color: #94a3b8;
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
}

/* User Info Grid */
.info-fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .info-fields-grid {
    grid-template-columns: 1fr 1fr;
  }
  .info-fields-grid .full-span {
    grid-column: span 2;
  }
}

.field-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 5px;
}

/* Action Buttons */
.submit-wrapper {
  margin-top: 24px;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(225, 29, 72, 0.35);
  transition: all 0.2s ease;
  touch-action: manipulation;
}

.btn-primary:active {
  transform: scale(0.99);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Success Card */
.success-card {
  text-align: center;
  padding: 36px 18px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 2px solid #10b981;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

/* ==================== ADMIN DASHBOARD STYLES ==================== */

.admin-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 680px) {
  .admin-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
  }
}

.admin-title-area h1 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
}

.admin-title-area p {
  color: #64748b;
  font-size: 0.85rem;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  background: #059669;
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(5, 150, 105, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-export:hover {
  background: #047857;
}

.btn-refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-refresh:hover {
  background: #e2e8f0;
}

.btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.btn-logout:hover {
  background: #ffe4e6;
}

/* KPI Summary Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-icon.pink { background: #ffe4e6; color: #e11d48; }
.stat-icon.green { background: #dcfce7; color: #16a34a; }
.stat-icon.purple { background: #ede9fe; color: #7c3aed; }
.stat-icon.blue { background: #e0f2fe; color: #0284c7; }

.stat-info .stat-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.stat-info .stat-label {
  font-size: 0.74rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 3px;
}

/* Tabs Navigation - Scrollable on Mobile */
.tabs-nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.tab-btn .tab-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.74rem;
}

.tab-btn:not(.active) .tab-count {
  background: #e2e8f0;
  color: #475569;
}

/* Cards Feed */
.qn-feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qn-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

.qn-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #1e293b;
}

.sub-date {
  font-size: 0.74rem;
  color: #94a3b8;
}

.qn-answer-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 3px solid #e11d48;
}

.qn-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.76rem;
  color: #64748b;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Empty State */
.empty-box {
  text-align: center;
  padding: 32px 16px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-color);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Search input */
.search-input-wrap {
  position: relative;
  margin-bottom: 16px;
}

.search-input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 16px;
  outline: none;
}

.search-input:focus {
  border-color: #6366f1;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

/* ==================== LOGIN MODAL ==================== */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.login-box {
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: scaleUp 0.25s ease;
}

.login-icon {
  width: 60px;
  height: 60px;
  background: #ede9fe;
  color: #6366f1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ==================== FOOTER & WATERMARK ==================== */
.app-footer {
  margin-top: 48px;
  text-align: center;
  padding: 24px 16px 20px;
  position: relative;
}

.admin-footer {
  margin-top: 40px;
}

.watermark-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

.watermark-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.watermark-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #475569;
}

.watermark-pill strong {
  color: #0f172a;
  font-weight: 700;
}

.watermark-pill i {
  color: #e11d48;
}

.watermark-divider {
  color: #cbd5e1;
  font-size: 0.9rem;
  user-select: none;
}

.footer-note {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 4px;
}

.footer-admin-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-admin-link:hover {
  color: #4f46e5;
  text-decoration: underline;
}

.admin-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

/* ==================== CLERK AUTH UI ==================== */
.auth-loading-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.auth-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #fecdd3;
  border-top-color: #e11d48;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.auth-gate-card {
  background: #ffffff;
  border: 1.5px solid #fecdd3;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.08);
  margin-bottom: 24px;
  animation: scaleUp 0.3s ease;
}

.auth-gate-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff1f2;
  color: #e11d48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid #ffe4e6;
}

.auth-gate-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.auth-gate-desc {
  color: #64748b;
  font-size: 0.92rem;
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.btn-google-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  background: #ffffff;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  user-select: none;
}

.btn-google-login:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.btn-google-login:active {
  transform: scale(0.98);
}

.auth-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  animation: fadeInDown 0.25s ease;
}

.user-profile-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.user-avatar-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-text-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.user-signed-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #10b981;
  font-weight: 700;
}

.user-email-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-logout-small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.btn-logout-small:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}

/* Mobile Media Queries */
@media (max-width: 480px) {
  .app-title { font-size: 1.45rem; }
  .rating-grid { gap: 4px; }
  .rating-chip { padding: 8px 2px; }
  .rating-chip .rate-num { font-size: 1rem; }
  .rating-chip .rate-label { font-size: 0.62rem; }
  .survey-card { padding: 16px 14px; }
  .btn-primary { padding: 14px 18px; font-size: 1rem; }
  .auth-gate-card { padding: 26px 16px; }
  .btn-google-login { width: 100%; font-size: 0.92rem; }
  .auth-user-bar { padding: 8px 12px; }
  .user-email-text { font-size: 0.82rem; max-width: 170px; }
  .watermark-card {
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
  }
  .watermark-divider {
    display: none;
  }
}


