/* LibreDesk Mail (Bulwark) — Adwaita-Theme.
 *
 * Bulwark ist eine Tailwind-v4/shadcn-SPA, deren Komponenten über semantische
 * CSS-Variablen (var(--color-*)) gefärbt werden; Dark-Mode via .dark-Klasse.
 * Dieses Stylesheet überschreibt NUR diese Tokens auf die GNOME-Adwaita-Palette
 * (Akzent #3584e4, weiche Hintergründe, Cantarell). Es wird von Caddy per
 * replace_response vor </head> injiziert (lädt zuletzt → gewinnt im Cascade).
 * Kein Layout-Eingriff, damit Updates der SPA nicht brechen.
 *
 * Palette: libadwaita named colors (accent #3584e4, destructive #e01b24,
 * success #2ec27e, warning #e5a50a; window/view/card-bg hell & dunkel).
 */

/* ── Hell (Adwaita light) ─────────────────────────────────────────────── */
:root {
  --color-background:            #fafafb;
  --color-foreground:            #1e1e1e;
  --color-card:                  #ffffff;
  --color-card-foreground:       #1e1e1e;
  --color-popover:               #ffffff;
  --color-popover-foreground:    #1e1e1e;

  --color-primary:               #3584e4;  /* Adwaita-Akzent (blau 3) */
  --color-primary-foreground:    #ffffff;
  --color-secondary:             #ededed;
  --color-secondary-foreground:  #1e1e1e;
  --color-muted:                 #f0f0ef;
  --color-muted-foreground:      #5e5c64;  /* Adwaita „dimmed" */
  --color-accent:                #e1ecfb;  /* dezenter Hover/Selektion-Tint */
  --color-accent-foreground:     #1a5fb4;

  --color-border:                #d6d6d3;
  --color-input:                 #d6d6d3;
  --color-ring:                  #3584e4;  /* Adwaita-Fokusring = Akzent */

  --color-destructive:           #e01b24;
  --color-destructive-foreground:#ffffff;
  --color-success:               #2ec27e;
  --color-success-foreground:    #ffffff;
  --color-warning:               #e5a50a;
  --color-warning-foreground:    #000000;
  --color-info:                  #3584e4;
  --color-info-foreground:       #ffffff;

  --color-selection:             #3584e4;
  --color-selection-foreground:  #ffffff;
  --color-unread:                #3584e4;

  --color-sidebar:               #ebebeb;
  --color-sidebar-foreground:    #1e1e1e;
  --color-sidebar-accent:        #dbe9fb;
  --color-sidebar-accent-foreground: #1a5fb4;
  --color-sidebar-border:        #d6d6d3;

  --font-sans: "Cantarell", "Adwaita Sans", "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Adwaita-Radien (etwas runder als shadcn-Default) */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* ── Dunkel (Adwaita dark) ────────────────────────────────────────────── */
.dark {
  --color-background:            #242424;  /* Adwaita window-bg dunkel */
  --color-foreground:            #ffffff;
  --color-card:                  #303030;
  --color-card-foreground:       #ffffff;
  --color-popover:               #303030;
  --color-popover-foreground:    #ffffff;

  --color-primary:               #3584e4;  /* Akzent bleibt blau (≠ shadcn-Weiß) */
  --color-primary-foreground:    #ffffff;
  --color-secondary:             #363636;
  --color-secondary-foreground:  #ffffff;
  --color-muted:                 #363636;
  --color-muted-foreground:      #c0bfbc;
  --color-accent:                #2e3b50;  /* dezenter blauer Selektions-Tint */
  --color-accent-foreground:     #99c1f1;

  --color-border:                #3d3d3d;
  --color-input:                 #3d3d3d;
  --color-ring:                  #3584e4;

  --color-destructive:           #ff7b63;  /* heller für Kontrast auf dunkel */
  --color-destructive-foreground:#241f31;
  --color-success:               #2ec27e;
  --color-success-foreground:    #ffffff;
  --color-warning:               #e5a50a;
  --color-warning-foreground:    #000000;
  --color-info:                  #78aeed;
  --color-info-foreground:       #241f31;

  --color-selection:             #3584e4;
  --color-selection-foreground:  #ffffff;
  --color-unread:                #78aeed;

  --color-sidebar:               #1c1c1c;
  --color-sidebar-foreground:    #ffffff;
  --color-sidebar-accent:        #2e3b50;
  --color-sidebar-accent-foreground: #99c1f1;
  --color-sidebar-border:        #3d3d3d;
}

/* ── Dezente globale Adwaita-Politur (kein Layout-Eingriff) ───────────── */
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Adwaita-Fokusring: 2px Akzent mit kleinem Offset */
*:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 1px;
}

/* Schlanke, Adwaita-artige Scrollbars */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-track { background: transparent; }
