/* ═══════════════════════════════════════════════════════════════════════════
   Portail de gestion BDL
   Feuille unique. Tout le portail s'habille ici.

   PRINCIPE : aucune couleur n'est ecrite en dur dans un composant. Tout passe
   par les variables ci-dessous, redefinies trois fois (clair, sombre auto,
   choix explicite de l'utilisateur). C'est ce qui permet a l'interrupteur de
   theme de tout basculer sans qu'aucune regle ne soit dupliquee.

   IDENTITE : le rouge #CE3438 et le dore #B29672 sont ceux de la Brasserie et
   ne changent pas. Ce qui change par rapport a l'ancien portail, c'est le fond
   (gris bleute #F1F2F2 -> creme chaud) et l'encre (charbon bleute -> brun).
   Meme luminosite, chaleur inverse.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  color-scheme: light;

  /* fonds */
  --plane:     #F2ECE0;   /* fond de page */
  --surface:   #FFFCF6;   /* fond des cartes */
  --surface-2: #F8F1E4;   /* fond secondaire, en-tetes de carte, survol */

  /* colonne de gauche */
  --rail:      #241F18;
  --rail-2:    #2F2820;
  --rail-ink:  #EDE5D6;
  --rail-mute: #9C9284;

  /* encre */
  --ink:       #201C16;
  --ink-2:     #5B5347;
  --muted:     #8B8375;

  /* traits */
  --rule:      #E2D8C6;
  --rule-2:    #D3C6AE;
  --grid:      #EAE0CD;

  /* identite BDL, inchangee */
  --rouge:     #CE3438;
  --dore:      #B29672;

  /* etats : volontairement distincts du rouge de marque, sauf « critique » ou
     la coincidence est naturelle dans un contexte de restaurant */
  --ok:        #3F7A5E;
  --warn:      #A9761B;
  --bad:       #C0392B;
  --wash-ok:   rgba(63,122,94,.12);
  --wash-warn: rgba(169,118,27,.14);
  --wash-bad:  rgba(192,57,43,.11);
  --wash-r-1:  rgba(206,52,56,.20);
  --wash-r-2:  rgba(206,52,56,.00);

  --shadow:    0 1px 2px rgba(32,28,22,.05), 0 10px 28px -20px rgba(32,28,22,.42);

  /* Lora vient de Google Fonts, chargee dans header.php. La pile de repli est
     serif pour que la page reste correcte si le reseau bloque la police. */
  --serif: "Lora", Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --rail-w: 268px;
}

/* Sombre automatique, quand le systeme est en mode sombre et que
   l'utilisateur n'a pas choisi explicitement. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --plane:     #14110D;
    --surface:   #1D1913;
    --surface-2: #262019;
    --rail:      #0F0D09;
    --rail-2:    #1B1710;
    --rail-ink:  #F4EFE4;
    --rail-mute: #8B8274;
    --ink:       #F4EFE4;
    --ink-2:     #B3A995;
    --muted:     #8B8274;
    --rule:      #332C22;
    --rule-2:    #443B2D;
    --grid:      #2A241B;
    /* Le rouge et le dore sont eclaircis : #CE3438 sur un fond sombre tombe
       sous le seuil de contraste lisible. La teinte reste la meme. */
    --rouge:     #E85055;
    --dore:      #C9AD86;
    --ok:        #6FB894;
    --warn:      #D9A64A;
    --bad:       #E8695C;
    --wash-ok:   rgba(111,184,148,.15);
    --wash-warn: rgba(217,166,74,.16);
    --wash-bad:  rgba(232,105,92,.15);
    --wash-r-1:  rgba(232,80,85,.26);
    --wash-r-2:  rgba(232,80,85,.00);
    --shadow:    0 1px 2px rgba(0,0,0,.5), 0 10px 28px -20px rgba(0,0,0,.9);
  }
}

/* Choix explicite : doit gagner sur la media query, dans les deux sens. */
:root[data-theme="dark"] {
  color-scheme: dark;
  --plane:     #14110D;
  --surface:   #1D1913;
  --surface-2: #262019;
  --rail:      #0F0D09;
  --rail-2:    #1B1710;
  --rail-ink:  #F4EFE4;
  --rail-mute: #8B8274;
  --ink:       #F4EFE4;
  --ink-2:     #B3A995;
  --muted:     #8B8274;
  --rule:      #332C22;
  --rule-2:    #443B2D;
  --grid:      #2A241B;
  --rouge:     #E85055;
  --dore:      #C9AD86;
  --ok:        #6FB894;
  --warn:      #D9A64A;
  --bad:       #E8695C;
  --wash-ok:   rgba(111,184,148,.15);
  --wash-warn: rgba(217,166,74,.16);
  --wash-bad:  rgba(232,105,92,.15);
  --wash-r-1:  rgba(232,80,85,.26);
  --wash-r-2:  rgba(232,80,85,.00);
  --shadow:    0 1px 2px rgba(0,0,0,.5), 0 10px 28px -20px rgba(0,0,0,.9);
}
:root[data-theme="light"] {
  color-scheme: light;
  --plane:     #F2ECE0;
  --surface:   #FFFCF6;
  --surface-2: #F8F1E4;
  --rail:      #241F18;
  --rail-2:    #2F2820;
  --rail-ink:  #EDE5D6;
  --rail-mute: #9C9284;
  --ink:       #201C16;
  --ink-2:     #5B5347;
  --muted:     #8B8375;
  --rule:      #E2D8C6;
  --rule-2:    #D3C6AE;
  --grid:      #EAE0CD;
  --rouge:     #CE3438;
  --dore:      #B29672;
  --ok:        #3F7A5E;
  --warn:      #A9761B;
  --bad:       #C0392B;
  --wash-ok:   rgba(63,122,94,.12);
  --wash-warn: rgba(169,118,27,.14);
  --wash-bad:  rgba(192,57,43,.11);
  --wash-r-1:  rgba(206,52,56,.20);
  --wash-r-2:  rgba(206,52,56,.00);
}

/* ══ base ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

body {
  background: var(--plane);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Chiffres alignes en colonne partout ou ils se comparent. */
.num { font-variant-numeric: tabular-nums; }

/* Le focus clavier doit TOUJOURS se voir. L'ancien portail n'avait aucun etat
   de focus : impossible de savoir ou on etait en naviguant au clavier. */
:focus-visible {
  outline: 2px solid var(--rouge);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Lien d'evitement : premier element focusable de la page, invisible tant
   qu'on ne tabule pas dessus. Permet de sauter la navigation. */
.saut {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--rouge); color: #fff; padding: .6rem 1rem;
  text-decoration: none; font-weight: 600;
}
.saut:focus { left: .5rem; top: .5rem; }

/* ══ ossature ═══════════════════════════════════════════════════════════ */
.app { display: flex; min-height: 100vh; align-items: stretch; }
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.wrap {
  padding: clamp(1.1rem, 2.6vw, 1.9rem) clamp(1rem, 3vw, 2rem) 3.5rem;
  max-width: 1320px; width: 100%;
}

/* ══ colonne de gauche ══════════════════════════════════════════════════ */
.rail {
  width: var(--rail-w); flex: none;
  background: var(--rail); color: var(--rail-ink);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  padding: 1.1rem 1.1rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: inherit; text-decoration: none;
}
.brand img { width: 42px; height: 42px; flex: none; }
.brand .nm { font-family: var(--serif); font-size: 1rem; line-height: 1.15; }
.brand .sub {
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--rail-mute);
}

/* Le contexte : succursale et date. C'est le coeur du changement par rapport
   a l'ancien portail, ou la ville etait un ?ville=Granby code en dur dans
   chaque lien du menu. */
.ctx {
  padding: .95rem 1.1rem 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: grid; gap: .55rem;
}
.ctx label {
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--rail-mute); font-weight: 600;
}
.ctx select {
  width: 100%; background: var(--rail-2); color: var(--rail-ink);
  border: 1px solid rgba(255,255,255,.14); padding: .55rem .6rem;
  font: inherit; font-size: .92rem; border-radius: 2px; cursor: pointer;
}
.datenav { display: flex; align-items: stretch; gap: .3rem; }
.datenav a, .datenav button {
  background: var(--rail-2); color: var(--rail-ink);
  border: 1px solid rgba(255,255,255,.14); border-radius: 2px;
  cursor: pointer; font: inherit; padding: .45rem .55rem; line-height: 1;
  text-decoration: none; display: inline-flex; align-items: center;
}
.datenav a:hover, .datenav button:hover { background: var(--rouge); border-color: var(--rouge); }
.datenav .day {
  flex: 1; text-align: center; background: var(--rail-2);
  border: 1px solid rgba(255,255,255,.14); border-radius: 2px;
  padding: .45rem .3rem; font-size: .82rem;
}

/* Navigation */
.nav { padding: .85rem 0 1.5rem; flex: 1; }
.nav h4 {
  margin: 1rem 1.1rem .35rem; font-size: .64rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--rail-mute);
}
.nav h4:first-child { margin-top: 0; }
.nav a {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem 1.1rem; color: var(--rail-ink); text-decoration: none;
  font-size: .93rem; border-left: 3px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.nav a:hover { background: rgba(255,255,255,.05); }
.nav a[aria-current="page"] {
  background: rgba(255,255,255,.07);
  border-left-color: var(--rouge); font-weight: 600;
}
.nav a .ic { width: 17px; flex: none; text-align: center; opacity: .7; font-size: .9rem; }
/* Le nom du fournisseur passe en second : on cherche « le plan de salle »,
   pas « Libro ». */
.nav a .src { margin-left: auto; font-size: .66rem; color: var(--rail-mute); }
.nav a .pip {
  margin-left: auto; background: var(--rouge); color: #fff;
  font-size: .66rem; font-weight: 700; padding: .05rem .34rem; border-radius: 8px;
}

/* Sous-menu deplie, pour Commandes et Inventaires qui ont deux niveaux. */
.nav details > summary {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem 1.1rem; cursor: pointer; font-size: .93rem;
  border-left: 3px solid transparent; list-style: none;
}
.nav details > summary::-webkit-details-marker { display: none; }
.nav details > summary:hover { background: rgba(255,255,255,.05); }
.nav details > summary::after {
  content: "\25B8"; margin-left: auto; font-size: .7rem; color: var(--rail-mute);
}
.nav details[open] > summary::after { content: "\25BE"; }
.nav details a { padding-left: 2.6rem; font-size: .88rem; }
.nav details .sous {
  padding: .5rem 1.1rem .15rem 2.6rem; font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--rail-mute);
}

.railfoot {
  padding: .8rem 1.1rem 1rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: .6rem; font-size: .82rem;
}
.railfoot .who b { display: block; font-weight: 600; }
.railfoot .who span {
  color: var(--rail-mute); font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.railfoot a {
  margin-left: auto; color: var(--rail-mute); text-decoration: none;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
}
.railfoot a:hover { color: var(--rouge); }

/* ══ barre du haut ══════════════════════════════════════════════════════ */
.topbar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: .85rem clamp(1rem, 3vw, 2rem);
  background: var(--surface); border-bottom: 1px solid var(--rule);
}
.topbar .crumb { font-size: .84rem; color: var(--muted); }
.topbar .crumb b { color: var(--ink); font-weight: 600; }
.topbar .crumb a { color: var(--rouge); text-decoration: none; }
.topbar .crumb a:hover { text-decoration: underline; }
.topbar .spacer { flex: 1; }
.topbar .stamp { font-size: .78rem; color: var(--muted); }
.tbtn {
  background: transparent; color: var(--ink-2); cursor: pointer;
  border: 1px solid var(--rule-2); border-radius: 2px;
  padding: .35rem .6rem; font: inherit; font-size: .78rem;
  display: inline-flex; align-items: center; gap: .35rem; text-decoration: none;
}
.tbtn:hover { border-color: var(--rouge); color: var(--rouge); }
.burger { display: none; }

/* ══ titres de section ══════════════════════════════════════════════════ */
.sec { margin-top: 1.9rem; }
.sec:first-child { margin-top: 0; }
.sechead { display: flex; align-items: baseline; gap: .7rem; margin-bottom: .8rem; flex-wrap: wrap; }
.sechead h2 {
  font-family: var(--serif); font-size: 1.18rem; font-weight: 600;
  letter-spacing: -.01em; text-wrap: balance;
}
.sechead .hint { font-size: .82rem; color: var(--muted); }
.sechead .spacer { flex: 1; }

/* ══ indicateurs ════════════════════════════════════════════════════════ */
.kpis {
  display: grid; gap: 1px; background: var(--rule);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border: 1px solid var(--rule); border-radius: 3px; overflow: hidden;
}
.kpi { background: var(--surface); padding: .95rem 1.05rem 1rem; display: flex; flex-direction: column; gap: .18rem; }
.kpi .k { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.kpi .v { font-size: 1.85rem; font-weight: 650; line-height: 1.05; letter-spacing: -.02em; }
.kpi .n { font-size: .8rem; color: var(--ink-2); }
.kpi.hot .v { color: var(--rouge); }

/* ══ graphique ══════════════════════════════════════════════════════════ */
.chartcard {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 3px; box-shadow: var(--shadow); padding: 1rem 1.05rem .9rem;
}
.chartbar { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: .9rem; }
.chartbar .lbl { font-size: .8rem; color: var(--muted); }
.seg { display: inline-flex; border: 1px solid var(--rule-2); border-radius: 2px; overflow: hidden; }
.seg button {
  background: transparent; border: 0; cursor: pointer; font: inherit;
  font-size: .78rem; padding: .32rem .7rem; color: var(--ink-2);
}
.seg button + button { border-left: 1px solid var(--rule-2); }
.seg button[aria-pressed="true"] { background: var(--rouge); color: #fff; font-weight: 600; }
.seg button:hover:not([aria-pressed="true"]) { background: var(--surface-2); color: var(--ink); }
/* Le graphique defile horizontalement dans SON conteneur : la page elle-meme
   ne part jamais de travers sur un ecran etroit. */
.plot { width: 100%; overflow-x: auto; position: relative; }
.plot svg { display: block; width: 100%; min-width: 620px; height: auto; }
.ax { fill: var(--muted); font-size: 11px; }
.lbl-svg { fill: var(--ink); font-size: 11.5px; font-weight: 640; }
.gridline { stroke: var(--grid); stroke-width: 1; }
.baseline { stroke: var(--rule-2); stroke-width: 1; }
.chartfoot {
  display: flex; gap: .4rem 1.3rem; flex-wrap: wrap;
  font-size: .78rem; color: var(--muted); margin-top: .7rem;
}
.chartfoot b { color: var(--ink-2); font-weight: 600; }
#tip {
  position: fixed; z-index: 60; pointer-events: none; opacity: 0;
  transform: translate(-50%, -112%); transition: opacity .1s ease;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--rule-2); border-radius: 3px;
  box-shadow: 0 6px 22px -8px rgba(0,0,0,.4);
  padding: .5rem .62rem; font-size: .8rem; line-height: 1.45;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
#tip .t { font-weight: 660; display: block; }
#tip .m { color: var(--ink-2); }

/* ══ alertes ════════════════════════════════════════════════════════════ */
.alerts { display: grid; gap: .55rem; }
.alert {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .75rem .9rem; border-radius: 3px;
  border: 1px solid var(--rule); border-left: 3px solid var(--warn);
  background: var(--wash-warn); font-size: .9rem;
}
.alert.crit { border-left-color: var(--bad); background: var(--wash-bad); }
.alert .lbl {
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--warn); flex: none; padding-top: .15rem;
}
.alert.crit .lbl { color: var(--bad); }
.alert a { color: inherit; font-weight: 600; }

/* ══ cartes de succursale ═══════════════════════════════════════════════ */
.succ { display: grid; gap: .85rem; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 3px; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.card:hover {
  transform: translateY(-2px); border-color: var(--rule-2);
  box-shadow: 0 2px 4px rgba(32,28,22,.06), 0 16px 34px -22px rgba(32,28,22,.5);
}
.card .top {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .9rem; border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
.card .ville { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
/* L'etat est encode par la FORME (une pastille) autant que par la couleur :
   lisible meme pour un daltonien. */
.card .state {
  margin-left: auto; font-size: .63rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--ok); background: var(--wash-ok);
  padding: .13rem .42rem; border-radius: 2px;
  display: inline-flex; align-items: center; gap: .3rem;
}
.card .state::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.card .state.ferme { color: var(--muted); background: var(--surface-2); }
.card .body { padding: .85rem .9rem .9rem; display: grid; gap: .75rem; }
.headline { display: flex; align-items: baseline; gap: .55rem; }
.headline .big { font-size: 1.7rem; font-weight: 650; letter-spacing: -.02em; line-height: 1; }
.headline .cash { font-size: 1.02rem; color: var(--rouge); font-weight: 620; margin-left: auto; }
.headline .unit { font-size: .78rem; color: var(--muted); }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
  border-radius: 2px; overflow: hidden;
}
.split > div { background: var(--surface); padding: .45rem .55rem; }
.split .t { font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.split .a { font-size: .92rem; font-weight: 600; }
.split .b { font-size: .78rem; color: var(--ink-2); }
.rows { display: grid; gap: .3rem; font-size: .83rem; }
.row { display: flex; align-items: center; gap: .5rem; }
.row .t { color: var(--muted); }
.row .v { margin-left: auto; font-weight: 600; }
.row .v small { font-weight: 400; color: var(--ink-2); }
.tag { font-size: .68rem; font-weight: 700; padding: .05rem .34rem; border-radius: 2px; }
.tag.ok   { color: var(--ok);   background: var(--wash-ok); }
.tag.warn { color: var(--warn); background: var(--wash-warn); }
.tag.bad  { color: var(--bad);  background: var(--wash-bad); }
.trend { font-size: .76rem; font-weight: 600; }
.trend.up { color: var(--ok); }
.trend.down { color: var(--bad); }
.card .go {
  padding: .55rem .9rem; border-top: 1px solid var(--rule);
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.card:hover .go { color: var(--rouge); }

/* ══ acces rapides ══════════════════════════════════════════════════════ */
.tiles { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); }
.tile {
  display: flex; flex-direction: column; gap: .12rem;
  padding: .7rem .8rem; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--rule); border-radius: 3px;
  transition: border-color .14s ease, background .14s ease;
}
.tile:hover { border-color: var(--rouge); background: var(--surface-2); }
.tile b { font-size: .9rem; font-weight: 620; }
.tile span { font-size: .74rem; color: var(--muted); }

/* ══ etat de chargement ═════════════════════════════════════════════════ */
/* L'ancien portail affichait « ... » partout pendant plusieurs secondes.
   Ici, un bloc gris qui a la BONNE TAILLE : la page ne saute pas quand la
   donnee arrive. */
.skel {
  display: inline-block; background: var(--surface-2);
  border-radius: 2px; color: transparent; min-width: 3ch;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

.vide {
  padding: 1.5rem; text-align: center; color: var(--muted);
  font-size: .88rem; background: var(--surface);
  border: 1px dashed var(--rule-2); border-radius: 3px;
}

.foot {
  margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--rule);
  font-size: .78rem; color: var(--muted);
  display: flex; gap: .4rem 1.2rem; flex-wrap: wrap;
}

/* ══ ecrans etroits ═════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .rail {
    position: fixed; z-index: 40; left: 0; top: 0;
    transform: translateX(-100%); transition: transform .2s ease;
    box-shadow: 0 0 40px rgba(0,0,0,.4);
  }
  .rail.open { transform: translateX(0); }
  .burger {
    display: inline-flex; align-items: center; gap: .4rem;
    background: transparent; border: 1px solid var(--rule-2); border-radius: 2px;
    color: var(--ink); font: inherit; font-size: .8rem; padding: .4rem .6rem; cursor: pointer;
  }
  .scrim { display: none; position: fixed; inset: 0; z-index: 30; background: rgba(20,17,13,.5); }
  .scrim.open { display: block; }
}

/* Sur un vrai telephone, les cibles de clic passent a 44 px de haut.
   L'ancien portail avait des liens de menu de 25 px. */
@media (max-width: 600px) {
  .nav a, .nav details > summary { padding-top: .7rem; padding-bottom: .7rem; }
  .tbtn { padding: .5rem .7rem; }
  .succ { grid-template-columns: 1fr; }
}

@media print {
  .rail, .topbar, .scrim, .chartbar { display: none !important; }
  body { background: #fff; }
  .card, .chartcard, .kpis { box-shadow: none; border-color: #ccc; }
}
