/* ──────────────────────────────────────────────────────────────
   NETPLEX.IO — marketing site design system
   Netplex midnight tokens (from the product styles.css) blended with
   a flat, modern, premium marketing layout. Dark-first. One warm
   orange accent. Geist for UI, JetBrains Mono for data/eyebrows.
   ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Surfaces — Midnight */
  --surface-0: #0a0b0e;
  --surface-1: #101116;
  --surface-2: #16181f;
  --surface-3: #1c1f27;
  --surface-4: #262a33;
  --surface-canvas: #08090c;

  /* Borders */
  --border-soft:   #181a20;
  --border:        #262932;
  --border-strong: #343845;
  --border-bright: #464b59;

  /* Text */
  --text-1: #f1f2f5;
  --text-2: #c4c7cf;
  --text-3: #868a93;
  --text-4: #595d66;
  --text-dim: #3a3d45;

  /* Accent — warm orange (default). Everything derives from --accent + --accent-ink,
     so the accent picker only needs to set those two. */
  --accent: #ff6e36;
  --accent-ink: #1a0b04;
  --accent-2: color-mix(in srgb, var(--accent) 82%, #ffffff);
  --accent-press: color-mix(in srgb, var(--accent) 84%, #000000);
  --accent-soft: color-mix(in srgb, var(--accent) 13%, transparent);
  --accent-soft-strong: color-mix(in srgb, var(--accent) 22%, transparent);

  /* canvas / hud tokens (recoloured per theme) */
  --canvas-circuit-dot: rgba(255,255,255,0.06);
  --hud-bg: rgba(20,20,24,0.9);
  --traffic-idle: rgba(150,160,175,0.5);

  /* Status */
  --ok:   #41c178;   --ok-soft:   rgba(65,193,120,0.13);
  --warn: #e8b24a;   --warn-soft: rgba(232,178,74,0.13);
  --err:  #ee5a55;   --err-soft:  rgba(238,90,85,0.13);
  --info: #5fb7ff;   --info-soft: rgba(95,183,255,0.13);
  --muted: #6b6b72;

  /* Vendor / role hues (for topology snippets) */
  --v-cisco: #1ba0d7;   --v-juniper: #84b135;  --v-fortinet: #ee2e24;
  --v-arista: #f37029;  --v-linux: #ffd35b;     --v-generic: #94a3b8;
  --role-router:   #5b8cff;
  --role-switchL3: #36b88a;
  --role-switchL2: #84b135;
  --role-firewall: #ee5a55;
  --role-server:   #a78bfa;
  --role-host:     #9a9aa2;
  --role-ap:       #e8b24a;

  --font-ui: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --r-1: 4px; --r-2: 6px; --r-3: 9px; --r-4: 13px; --r-5: 18px;

  --shadow-1: 0 1px 2px rgba(0,0,0,0.45);
  --shadow-2: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.30);
  --shadow-pop: 0 24px 70px -18px rgba(0,0,0,0.7), 0 0 0 1px var(--border-strong);

  --ease-out:      cubic-bezier(.22,.61,.36,1);
  --ease-out-soft: cubic-bezier(.32,.72,0,1);
  --ease-spring:   cubic-bezier(.34,1.32,.64,1);

  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--surface-0);
  color: var(--text-1);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; display: block; }

/* Grid backdrop with radial mask */
.gridbg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 78% 58% at 50% -4%, #000 32%, transparent 76%);
}
.content { position: relative; z-index: 1; }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--surface-0) 84%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--border-soft);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.brand .mark {
  width: 26px; height: 26px; border-radius: var(--r-2); display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink); flex-shrink: 0;
}
.brand .ver { font-family: var(--font-mono); font-size: 10px; color: var(--text-4); font-weight: 500;
  border: 1px solid var(--border); padding: 2px 6px; border-radius: 999px; margin-left: 2px; }
.brand .dotmark {
  display: inline-block; width: 0.32em; height: 0.32em; border-radius: 50%;
  background: var(--accent); margin-left: 0.12em; vertical-align: baseline;
  overflow: hidden; color: transparent; text-indent: -999px;
}
.navlinks { display: flex; gap: 28px; }
.navlinks a { font-size: 14.5px; color: var(--text-3); transition: color .15s; }
.navlinks a:hover, .navlinks a.active { color: var(--text-1); }
.navactions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; color: var(--text-2); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: inherit; font-size: 14.5px; font-weight: 500;
  border: 1px solid transparent; border-radius: var(--r-2); padding: 10px 16px;
  transition: color .16s var(--ease-out), border-color .16s, transform .12s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background-color: var(--accent); color: var(--accent-ink); font-weight: 600; }
.btn-primary:hover { background-color: var(--accent-2); transform: translateY(-1px); }
.btn-ghost { background-color: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text-1); background-color: var(--surface-2); }
.btn-outline { background-color: var(--surface-2); border-color: var(--border); color: var(--text-2); }
.btn-outline:hover { border-color: var(--border-bright); color: var(--text-1); transform: translateY(-1px); }
.btn-lg { padding: 13px 22px; font-size: 15.5px; border-radius: var(--r-3); }

/* ── PRIMITIVES ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 12.5px; font-weight: 500; color: var(--text-2);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 13px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); flex-shrink: 0; }
.pill.accent { color: var(--accent-2); background: var(--accent-soft); border-color: rgba(255,110,54,0.28); }
.pill.accent .dot { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.chip {
  font-size: 12.5px; color: var(--text-3); background: var(--surface-1); white-space: nowrap;
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 13px;
}
.kbd {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-2);
  background: var(--surface-3); border: 1px solid var(--border); border-bottom-width: 2px;
  border-radius: 5px; padding: 2px 6px;
}

/* ── SECTIONS ──────────────────────────────────────────── */
section { padding: 92px 0; position: relative; }
.sec-eyebrow { display: block; margin-bottom: 16px; }
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.05; font-weight: 600; }
h2.sec { font-size: 40px; line-height: 1.08; margin-bottom: 14px; text-wrap: balance; }
h2.sec .accent { color: var(--accent); }
.sec-sub { font-size: 17.5px; color: var(--text-3); max-width: 620px; margin-bottom: 8px; line-height: 1.55; }
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ── CARDS ─────────────────────────────────────────────── */
.card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--r-4); padding: 26px;
}
.card-ic {
  width: 44px; height: 44px; border-radius: var(--r-3); display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border); margin-bottom: 18px;
}
.card-ic svg { width: 22px; height: 22px; color: var(--accent); }

/* ── WINDOW CHROME (product frames) ────────────────────── */
.win {
  background: var(--surface-1); border: 1px solid var(--border-strong);
  border-radius: var(--r-4); overflow: hidden; box-shadow: var(--shadow-pop);
}
.win-bar {
  display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px;
  background: var(--surface-1); border-bottom: 1px solid var(--border-soft);
}
.win-bar .lights { display: flex; gap: 7px; }
.win-bar .lights i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-4); display: block; }
.win-bar .title { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-4); margin-left: 6px; }
.win-bar .right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border-soft); padding: 60px 0 40px; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 44px; }
.foot-brand p { font-size: 14px; color: var(--text-3); max-width: 260px; margin-top: 14px; line-height: 1.55; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-4); margin-bottom: 15px; }
.foot-col a { display: block; font-size: 14px; color: var(--text-3); margin-bottom: 11px; transition: color .15s; }
.foot-col a:hover { color: var(--text-1); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding-top: 26px; border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--text-4); flex-wrap: wrap;
}

/* ── TOPOLOGY SNIPPET (shared) — matches the product node card ── */
.node {
  position: absolute; width: 108px; display: flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: var(--r-2); padding: 5px 7px; box-shadow: var(--shadow-1); z-index: 2;
}
.node.sel { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-2); }
.node .badge { width: 26px; height: 26px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.node .badge svg { width: 16px; height: 16px; }
.node .meta { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.node .nm { font-size: 10.5px; font-weight: 600; color: var(--text-1); line-height: 1.1; white-space: nowrap; }
.node .ip { font-family: var(--font-mono); font-size: 8.5px; color: var(--text-4); line-height: 1; }
.node .st { position: absolute; top: 5px; right: 6px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 0 2px var(--surface-2); }
.iface { position: absolute; font-family: var(--font-mono); font-size: 8px; color: var(--text-4);
  white-space: nowrap; z-index: 1; letter-spacing: 0.02em; }

@keyframes dash-fwd { to { stroke-dashoffset: -24; } }
.flow { stroke-dasharray: 5 7; animation: dash-fwd 1.1s linear infinite; }

@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .navlinks { display: none; }
  .menu-toggle { display: inline-flex; }
  h2.sec { font-size: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .wrap { padding: 0 20px; }
  h2.sec { font-size: 27px; }
}

/* ──────────────────────────────────────────────────────────────
   THEMES — full token sets ported from the product. :root = Midnight.
   Switched via [data-theme="…"] on <html>. Accent is independent
   (set on <html> by the Appearance picker) so it survives theme swaps.
   ────────────────────────────────────────────────────────────── */
[data-theme="graphite"] {
  --surface-0: #17161a;  --surface-1: #1d1c21;  --surface-2: #25242a;
  --surface-3: #2d2c33;  --surface-4: #393841;  --surface-canvas: #131216;
  --border-soft: #2a2930; --border: #34333b; --border-strong: #43424c; --border-bright: #565560;
  --text-1: #f5f5f6; --text-2: #cdccd2; --text-3: #95949c; --text-4: #6a6972; --text-dim: #4a4951;
  --canvas-circuit-dot: rgba(255,255,255,0.055); --hud-bg: rgba(37,36,42,0.92);
}
[data-theme="obsidian"] {
  --surface-0: #050507;  --surface-1: #0c0c0f;  --surface-2: #131316;
  --surface-3: #1a1a1f;  --surface-4: #232329;  --surface-canvas: #030304;
  --border-soft: #161619; --border: #222227; --border-strong: #313138; --border-bright: #44444d;
  --text-1: #f6f6f8; --text-2: #c9c9d0; --text-3: #888890; --text-4: #5a5a63;
  --canvas-circuit-dot: rgba(255,255,255,0.05); --hud-bg: rgba(12,12,15,0.92);
}
[data-theme="cloud"] {
  --surface-0: #f5f7fa;  --surface-1: #ffffff;  --surface-2: #eef1f6;
  --surface-3: #e5e9f0;  --surface-4: #d8dde8;  --surface-canvas: #eef1f6;
  --border-soft: #eaedf3; --border: #dde2ea; --border-strong: #c8cfdb; --border-bright: #abb4c4;
  --text-1: #141821; --text-2: #3a414e; --text-3: #69707e; --text-4: #969cab; --text-dim: #bcc2cd;
  --muted: #a3a9b6;
  --ok: #2fa45f; --ok-soft: rgba(47,164,95,0.13);
  --warn: #c4861f; --warn-soft: rgba(196,134,31,0.14);
  --err: #d6433a; --err-soft: rgba(214,67,58,0.12);
  --info: #2b7fd4; --info-soft: rgba(43,127,212,0.12);
  --shadow-1: 0 1px 2px rgba(20,28,45,0.07);
  --shadow-2: 0 1px 2px rgba(20,28,45,0.05), 0 8px 24px rgba(20,28,45,0.08);
  --shadow-pop: 0 18px 44px -16px rgba(20,28,45,0.26), 0 0 0 1px var(--border-strong);
  --canvas-circuit-dot: rgba(30,42,66,0.08); --hud-bg: rgba(255,255,255,0.92);
  --traffic-idle: rgba(90,96,110,0.4);
}
[data-theme="paper"] {
  --surface-0: #f6f5f1;  --surface-1: #ffffff;  --surface-2: #efeee8;
  --surface-3: #e7e6df;  --surface-4: #dbdbd2;  --surface-canvas: #efeee8;
  --border-soft: #ebeae3; --border: #e0ded6; --border-strong: #ccccc2; --border-bright: #afafa4;
  --text-1: #1b1b1e; --text-2: #41424a; --text-3: #70717a; --text-4: #9a9aa0; --text-dim: #c2c2c8;
  --muted: #a1a1a8;
  --ok: #2fa45f; --ok-soft: rgba(47,164,95,0.13);
  --warn: #c4861f; --warn-soft: rgba(196,134,31,0.14);
  --err: #d6433a; --err-soft: rgba(214,67,58,0.12);
  --info: #2b7fd4; --info-soft: rgba(43,127,212,0.12);
  --shadow-1: 0 1px 2px rgba(24,24,32,0.07);
  --shadow-2: 0 1px 2px rgba(24,24,32,0.05), 0 8px 24px rgba(24,24,32,0.08);
  --shadow-pop: 0 18px 44px -16px rgba(24,24,32,0.26), 0 0 0 1px var(--border-strong);
  --canvas-circuit-dot: rgba(30,30,38,0.08); --hud-bg: rgba(255,255,255,0.92);
  --traffic-idle: rgba(96,96,106,0.4);
}
[data-theme="sand"] {
  --surface-0: #eae8e0;  --surface-1: #f5f3ec;  --surface-2: #e1dfd4;
  --surface-3: #d7d4c7;  --surface-4: #cac7b8;  --surface-canvas: #e1dfd4;
  --border-soft: #dddbd0; --border: #d0cdbf; --border-strong: #bbb8a8; --border-bright: #9c998a;
  --text-1: #1f1f1e; --text-2: #44454a; --text-3: #73746e; --text-4: #9b9b91; --text-dim: #c0bfb4;
  --muted: #a3a399;
  --ok: #2f9a59; --ok-soft: rgba(47,154,89,0.15);
  --warn: #bc841c; --warn-soft: rgba(188,132,28,0.15);
  --err: #cf4337; --err-soft: rgba(207,67,55,0.13);
  --info: #2877c6; --info-soft: rgba(40,119,198,0.12);
  --shadow-1: 0 1px 2px rgba(40,38,30,0.09);
  --shadow-2: 0 1px 2px rgba(40,38,30,0.07), 0 8px 24px rgba(40,38,30,0.1);
  --shadow-pop: 0 18px 44px -16px rgba(40,38,30,0.3), 0 0 0 1px var(--border-strong);
  --canvas-circuit-dot: rgba(48,46,38,0.09); --hud-bg: rgba(245,243,236,0.92);
  --traffic-idle: rgba(110,108,96,0.42);
}
/* light-theme grid backdrop wants dark hairlines */
[data-theme="cloud"] .gridbg, [data-theme="paper"] .gridbg, [data-theme="sand"] .gridbg {
  background-image:
    linear-gradient(rgba(30,34,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,34,46,0.05) 1px, transparent 1px);
}
[data-theme="cloud"] .topo::before, [data-theme="paper"] .topo::before, [data-theme="sand"] .topo::before {
  background-image:
    linear-gradient(rgba(30,34,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,34,46,0.04) 1px, transparent 1px);
}
/* light-theme info role for nodes/links stays readable */
[data-theme="cloud"], [data-theme="paper"], [data-theme="sand"] { --info: #2b7fd4; }

html { transition: background-color .3s var(--ease-out); }

/* ── ACCENTS — picker sets [data-accent] on <html>; derived tokens follow ── */
[data-accent="orange"]  { --accent: #ff6e36; --accent-ink: #1a0b04; }
[data-accent="blue"]    { --accent: #3d8bff; --accent-ink: #ffffff; }
[data-accent="green"]   { --accent: #2fb574; --accent-ink: #04140d; }
[data-accent="magenta"] { --accent: #e0529c; --accent-ink: #ffffff; }
[data-accent="amber"]   { --accent: #e8b24a; --accent-ink: #231803; }
[data-accent="teal"]    { --accent: #1fb8b0; --accent-ink: #04211f; }
[data-accent="indigo"]  { --accent: #6c6cf2; --accent-ink: #ffffff; }
[data-accent="rose"]    { --accent: #ff7a9c; --accent-ink: #2a0810; }

/* ──────────────────────────────────────────────────────────────
   APPEARANCE PANEL — compact Theme + Accent picker (mirrors the app)
   ────────────────────────────────────────────────────────────── */
.ap-trigger { width: 34px; height: 34px; border-radius: var(--r-2); display: grid; place-items: center;
  color: var(--text-3); border: 1px solid transparent; transition: all .15s; }
.ap-trigger:hover { color: var(--text-1); background: var(--surface-2); }
.ap-trigger svg { width: 18px; height: 18px; }

.ap-scrim { position: fixed; inset: 0; z-index: 200; background: transparent; display: none; }
.ap-scrim.open { display: block; }
.ap-panel {
  position: fixed; top: 64px; right: 18px; z-index: 201; width: 312px;
  background: var(--surface-1); border: 1px solid var(--border-strong); border-radius: var(--r-4);
  box-shadow: var(--shadow-pop); padding: 18px; display: none;
  transform-origin: top right;
}
.ap-panel.open { display: block; animation: ap-in .18s var(--ease-out); }
@keyframes ap-in { from { opacity: 0; transform: scale(0.96) translateY(-6px); } to { opacity: 1; transform: none; } }
.ap-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ap-head h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.ap-head .x { color: var(--text-4); width: 26px; height: 26px; border-radius: var(--r-1); display: grid; place-items: center; }
.ap-head .x:hover { color: var(--text-1); background: var(--surface-2); }
.ap-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-4); margin: 4px 0 10px; }
.ap-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ap-theme { cursor: pointer; }
.ap-sw { aspect-ratio: 4/2.5; border-radius: var(--r-2); border: 1px solid var(--border); position: relative; overflow: hidden; display: grid; place-items: center; transition: box-shadow .15s; }
.ap-theme.on .ap-sw { box-shadow: 0 0 0 2px var(--accent); border-color: var(--accent); }
.ap-sw .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); }
.ap-tname { display: block; text-align: center; font-size: 11.5px; color: var(--text-3); margin-top: 6px; }
.ap-theme.on .ap-tname { color: var(--text-1); font-weight: 500; }
.ap-divider { height: 1px; background: var(--border-soft); margin: 18px 0 14px; }
.ap-accents { display: flex; gap: 9px; flex-wrap: wrap; }
.ap-acc { width: 26px; height: 26px; border-radius: 50%; cursor: pointer; position: relative; border: 2px solid transparent; transition: transform .12s; }
.ap-acc:hover { transform: scale(1.1); }
.ap-acc.on { box-shadow: 0 0 0 2px var(--surface-1), 0 0 0 4px currentColor; }
.ap-acc.on::after { content: ''; position: absolute; inset: 0; margin: auto; width: 9px; height: 9px;
  background: #fff; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat; }
.ap-note { font-size: 11px; color: var(--text-4); margin-top: 11px; }
.ap-reset { margin-top: 16px; width: 100%; justify-content: center; }
@media (max-width: 480px) { .ap-panel { right: 10px; left: 10px; width: auto; } }
