/* ============================================================
   HSA Notes — Page-specific styles
   ============================================================ */

/* Auth page decorative */
.auth-screen {
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(46, 58, 89, 0.10), transparent 60%),
    radial-gradient(900px 500px at 110% 110%, rgba(201, 168, 118, 0.12), transparent 60%),
    var(--color-background);
}

/* Dashboard layout */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.dash-grid > * { min-width: 0; }

/* API key / credential view page-specific tweaks */
.env-badge { letter-spacing: 0.03em; }

/* Sync page hero */
.sync-hero { display: flex; flex-direction: column; gap: 14px; }

/* Favicon preview */
.favicon-preview {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  overflow: hidden;
}
.favicon-preview img { width: 100%; height: 100%; object-fit: cover; }
.favicon-row { display: flex; align-items: center; gap: 16px; }

/* Folder chips list */
.folder-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }

/* Notes color options */
.note-colors { display: flex; gap: 8px; flex-wrap: wrap; }

/* Section subtitle inside about */
.about-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
