:root{
  /* Prairie green + sky background (subtle) */
  --bg: #f6fbff;
  --bg2:#cfefff;
  --bg3:#e9f8ff;

  --text:#0b1220;
  --muted:#5b6b80;

  --line: rgba(15, 23, 42, .12);
  --line2: rgba(15, 23, 42, .18);

  --accent:#1b79ff;
  --accent2:#2b90ff;
  --accentBg: rgba(27,121,255,.10);
  --accentBorder: rgba(27,121,255,.26);

  --success:#16a34a;
  --danger:#ef4444;

  --radius:14px;
  --radius2:12px;

  /* Sidebar palette (dark + stealthy remains) */
  --sidebarBg1: rgba(8,12,18,.98);
  --sidebarBg2: rgba(8,12,18,.65);
  --sidebarText:#e7edf5;
  --sidebarMuted:#aab7c7;
  --sidebarLine: rgba(31,42,54,.55);

  --shadow: 0 18px 60px rgba(2, 6, 23, .08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    linear-gradient(180deg, #6fd1ff 0%, #bfeaff 40%, #eaf7ff 60%, #f6fbff 100%);
  background-attachment: fixed;
  position:relative;
  overflow-x:hidden;
}

/* Sky + fluffy clouds (subtle, non-distracting) */
body::before{
  content:"";
  position:fixed;
  top:-12vh;
  left:-10vw;
  width:120vw;
  height:55vh;
  z-index:-2;
  pointer-events:none;
  opacity:.28;
  background:
    radial-gradient(circle at 10% 25%, rgba(255,255,255,.95) 0 22%, rgba(255,255,255,0) 50%),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,.9) 0 18%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at 40% 28%, rgba(255,255,255,.92) 0 20%, rgba(255,255,255,0) 52%),
    radial-gradient(circle at 62% 22%, rgba(255,255,255,.88) 0 18%, rgba(255,255,255,0) 50%),
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.94) 0 21%, rgba(255,255,255,0) 54%),
    radial-gradient(circle at 92% 20%, rgba(255,255,255,.88) 0 17%, rgba(255,255,255,0) 48%);
  filter: blur(2px);
  animation: cloudDrift 70s linear infinite;
}

@keyframes cloudDrift{
  0%{ transform: translateX(-2vw); }
  50%{ transform: translateX(2vw); }
  100%{ transform: translateX(-2vw); }
}

/* Prairie green hill at bottom (sweetprarie default) */
body::after{
  content:"";
  position:fixed;
  left:-10vw;
  bottom:-16vh;
  width:120vw;
  height:48vh;
  z-index:-3;
  pointer-events:none;
  opacity:.95;
  /*
    - Green stays very low (starts near the bottom)
    - Middle gets soothing baby-blue to white highlights
  */
  background:
    /* Soft horizon: baby blue -> white (no green) */
    radial-gradient(1200px 260px at 20% 96%, rgba(191, 226, 255, .70) 0%, rgba(191, 226, 255, 0) 60%),
    radial-gradient(900px 230px at 65% 92%, rgba(180, 220, 255, .60) 0%, rgba(180, 220, 255, 0) 62%),
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 38%,
      rgba(207, 238, 255, .78) 52%,
      rgba(255, 255, 255, .96) 65%,
      rgba(191, 226, 255, .72) 78%,
      rgba(255,255,255,0) 90%,
      rgba(180, 220, 255, .22) 100%
    );
  filter: blur(0.2px);
}

/* Theme overrides: ONLY background layer changes */
body.theme-white{
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 55%, #eef3ff 100%);
}
body.theme-silver{
  /* Metallic silver: strong sheen + depth */
  background:
    /* Top specular highlight */
    radial-gradient(900px 320px at 50% 0%, rgba(255,255,255,.98) 0%, rgba(255,255,255,0) 60%),
    /* Cool steel glow */
    radial-gradient(700px 260px at 18% 28%, rgba(220,240,255,.55) 0%, rgba(220,240,255,0) 62%),
    radial-gradient(850px 340px at 85% 45%, rgba(255,255,255,.32) 0%, rgba(255,255,255,0) 62%),
    /* Steel gradient */
    linear-gradient(180deg, #fbfdff 0%, #e9eff7 22%, #d0dae8 55%, #f1f4f9 100%),
    /* Vignette for shadow depth */
    radial-gradient(1400px 900px at 50% 30%, rgba(0,0,0,0) 52%, rgba(0,0,0,.10) 100%);
}

/* Silver readability: faint shadow behind text on the main area */
body.theme-silver .main *{
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

/* Silver header: brighter, shinier metal + detailed glints */
body.theme-silver .sidebar{
  position:fixed;
  overflow:hidden;
  background:
    radial-gradient(650px 330px at 20% 0%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 65%),
    radial-gradient(520px 200px at 80% 30%, rgba(210,235,255,.55) 0%, rgba(210,235,255,0) 70%),
    /* Darker mid for white text readability, with white shining back at the ends */
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f3f6fb 18%,
      #d6dee9 40%,
      #7b879d 52%,
      #a8b2c7 65%,
      #eef2f8 85%,
      #ffffff 100%
    ) !important;
  border-bottom: 1px solid rgba(120,130,145,.65) !important;
  box-shadow:
    0 22px 70px rgba(2, 6, 23, .20) !important,
    inset 0 -1px 0 rgba(255,255,255,.65) !important;
}

body.theme-silver .sidebar::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:.78;
  background:
    /* bright metal glint */
    linear-gradient(105deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.0) 42%,
      rgba(255,255,255,.80) 48%,
      rgba(255,255,255,.0) 56%,
      rgba(255,255,255,0) 100%),
    radial-gradient(500px 120px at 35% 15%, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 70%),
    radial-gradient(450px 160px at 75% 55%, rgba(190,225,255,.40) 0%, rgba(190,225,255,0) 70%);
  mix-blend-mode: screen;
}

/* Only header text (brand + top nav) gets shiny metallic outlines */
body.theme-silver .sidebar .brand,
body.theme-silver .sidebar .navlink,
body.theme-silver .sidebar-footer .navlink{
  position:relative;
  z-index:1;
  color:transparent;
  /* metallic: dark bottom -> bright mid/top */
  background-image: linear-gradient(180deg,
    rgba(255,255,255,.98) 0%,
    rgba(245,250,255,.98) 22%,
    rgba(220,235,255,.92) 42%,
    rgba(150,175,205,.88) 70%,
    rgba(14,18,26,1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 1px rgba(255,255,255,.95),
    0 0 10px rgba(255,255,255,.22);
}

body.theme-salesforce .sidebar .brand,
body.theme-salesforce .sidebar .navlink,
body.theme-salesforce .sidebar-footer .navlink{
  position:relative;
  z-index:1;
  color:transparent;
  /* same metallic gradient for header text */
  background-image: linear-gradient(180deg,
    rgba(255,255,255,.98) 0%,
    rgba(245,250,255,.98) 22%,
    rgba(220,235,255,.92) 42%,
    rgba(150,175,205,.88) 70%,
    rgba(14,18,26,1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 1px rgba(255,255,255,.95),
    0 0 10px rgba(255,255,255,.22);
}


body.theme-silver .sidebar .navlink:hover{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(150, 170, 200, .28) !important;
}

/* Silver: highlight the first 4 main nav buttons (Dashboard/Leads/Accounts/Campaigns) */
body.theme-silver .sidebar nav.nav a.navlink:nth-of-type(-n+4){
  /* silvery shadowy gradient: lighter than prior, still slightly below white-text luminance */
  background: linear-gradient(180deg,
    rgba(245,250,255,.55) 0%,
    rgba(206,221,240,.18) 100%
  ) !important;
  border-color: rgba(255,255,255,.58) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    0 8px 22px rgba(2, 6, 23, .10) !important;
}

body.theme-silver .sidebar nav.nav a.navlink:nth-of-type(-n+4):hover{
  /* slightly darker than default, nudged toward the same blue-tinted surface as the "Add lead / CSV import" summary */
  background:
    linear-gradient(180deg,
      rgba(248,252,255,.52) 0%,
      rgba(206,221,240,.24) 45%,
      rgba(206,221,240,.26) 55%,
      rgba(248,252,255,.48) 100%
    ),
    rgba(27,121,255,.10) !important;
  border-color: rgba(255,255,255,.68) !important;
}

body.theme-silver .sidebar a.navlink,
body.theme-silver .sidebar-footer a.navlink,
body.theme-salesforce .sidebar a.navlink,
body.theme-salesforce .sidebar-footer a.navlink{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.05;
}

/* NotifyCore brand: remove metallic gradient effects on silver + salesforce */
body.theme-silver .sidebar .brand > span:first-child,
body.theme-silver .sidebar-footer .brand > span:first-child,
body.theme-salesforce .sidebar .brand > span:first-child,
body.theme-salesforce .sidebar-footer .brand > span:first-child{
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-stroke: none !important;
  color: #062a45 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.22);
}

/* NotifyCore readability: subtle shadow behind the brand text (exclude silver + salesforce) */
body:not(.theme-silver):not(.theme-salesforce) .sidebar .brand > span:first-child,
body:not(.theme-silver):not(.theme-salesforce) .sidebar-footer .brand > span:first-child{
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
}

/* Salesforce: match logo blue for NotifyCore brand text */
body.theme-salesforce .sidebar .brand > span:first-child,
body.theme-salesforce .sidebar-footer .brand > span:first-child{
  color: #0070d2 !important;
  text-shadow: 0 1px 2px rgba(0,112,210,.25);
}

/* Salesforce: clean sky + deep header accent */
body.theme-salesforce{
  background: linear-gradient(180deg, #cfeaff 0%, #f7fbff 45%, #ffffff 100%);
}
body.theme-salesforce::before{
  opacity: .22;
}
body.theme-salesforce::after{
  opacity: .95;
  background:
    /* soft blue horizon */
    radial-gradient(1200px 260px at 20% 96%, rgba(0, 112, 210, .22) 0%, rgba(0, 112, 210, 0) 60%),
    radial-gradient(900px 230px at 65% 92%, rgba(0, 160, 230, .18) 0%, rgba(0, 160, 230, 0) 62%),
    /* middle highlight: baby blue -> white */
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 40%,
      rgba(207, 234, 255, .65) 52%,
      rgba(255,255,255,.98) 66%,
      rgba(207, 234, 255, .55) 78%,
      rgba(255,255,255,0) 90%,
      rgba(0, 112, 210, .10) 100%
    );
}

body.theme-white::before,
body.theme-white::after,
body.theme-silver::before,
body.theme-silver::after,
body.theme-dark::before,
body.theme-dark::after{
  opacity:0 !important;
}

a{color:inherit}

/* App layout */
.app{display:flex; min-height:100vh;}

/* When authenticated, the sidebar becomes a floating top bar */
.app--with-topbar .main{padding-top:92px;}

/* Top bar: white background + Salesforce-blue border */
.sidebar{
  width:auto;
  min-height:auto;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:60;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:#ffffff;
  border-right:none;
  border-bottom: 2px solid rgba(27,121,255,.42);
  padding:14px 18px;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:16px;
  color:var(--text);
}

/* Salesforce: header accent + subtle nav polish */
body.theme-salesforce .sidebar{
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 2px solid rgba(0,112,210,.60);
}
body.theme-salesforce .brand{color:#0b5fbf;}
body.theme-salesforce .navlink{color: rgba(11,18,32,.75);}
body.theme-salesforce .navlink:hover{
  background: rgba(0,112,210,.10);
  border-color: rgba(0,112,210,.22);
  color: rgba(11,18,32,.95);
}

/* Salesforce: top nav typography (smaller + fatter, simple serif) */
body.theme-salesforce .sidebar .nav .navlink{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.05;
}

/* Dark + sweetprarie: use the same simple serif header typography */
body.theme-dark .sidebar .nav .navlink,
body.theme-dark .sidebar-footer .navlink,
body.theme-sweetprarie .sidebar .nav .navlink,
body.theme-sweetprarie .sidebar-footer .navlink{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0;
}

body.theme-dark .sidebar .brand,
body.theme-sweetprarie .sidebar .brand,
body.theme-dark .sidebar-footer .navlink,
body.theme-sweetprarie .sidebar-footer .navlink{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

/* Disable the old full-height sidebar edge */
.sidebar::after{display:none;}


.brand{
  font-weight:850;
  letter-spacing:.2px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav{display:flex; flex-direction:row; gap:8px; margin-top:0; flex-wrap:wrap;}

.navlink{
  color: rgba(11,18,32,.72);
  text-decoration:none;
  padding:9px 12px;
  border-radius:12px;
  border:1px solid transparent;
  display:flex;
  align-items:center;
  gap:10px;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .08s ease;
}

/* Non-silver themes: make top-nav link text a deep ocean blue */
body:not(.theme-silver) .sidebar .navlink,
body:not(.theme-silver) .sidebar-footer .navlink{
  color: #062a45 !important;
}
body:not(.theme-silver) .sidebar .navlink:hover,
body:not(.theme-silver) .sidebar-footer .navlink:hover{
  color: #062a45 !important;
}

.navlink:hover{
  color: rgba(11,18,32,.95);
  background: rgba(27,121,255,.10);
  border-color: rgba(27,121,255,.22);
}

.sidebar-footer{margin-top:0; display:flex; flex-direction:row; flex-wrap:wrap; align-items:center; gap:10px;}

/* Main: light */
.main{flex:1; padding:24px 28px; font-weight:420; letter-spacing:-0.01em; color:var(--text);}
.main--center{max-width:540px; margin:0 auto; padding-top:90px;}

/* Cards: light Salesforce-like surfaces (subtle depth, not flat) */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,255,.72));
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position:relative;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: radial-gradient(600px 220px at 20% 0%, rgba(27,121,255,.16), transparent 52%);
  opacity:.85;
}

.card > *{position:relative;}

.card--hero{padding:22px;}

/* Dashboard hero layout */
.hero-top{display:block;}
.tenant-block{min-width:260px;}
.tenant-block .kicker{font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;}

.stat{
  border:1px solid rgba(15, 23, 42, .10);
  border-radius:12px;
  padding:16px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
}

hr.hero-sep{margin:18px 0 16px;}
.hero-stats{gap:18px; padding:10px 6px 0;}
.hero-stats .stat{border:1px solid rgba(15, 23, 42, .10);}
.stat-num{font-size:22px; font-weight:820; letter-spacing:-0.02em; color:var(--text);}
.stat-label{margin-top:6px; color:var(--muted); font-size:12px; letter-spacing:.35px; text-transform:uppercase; font-weight:700;}
.card--sub{
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,250,255,.64));
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius2);
  padding:14px;
  position:relative;
}

.card--sub::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: radial-gradient(520px 180px at 30% 0%, rgba(27,121,255,.14), transparent 55%);
}

.card--sub > *{position:relative;}

/* Online-connected subtle border after dashboard underline animation */
.dashboard-online-border{
  position:relative;
  animation: dashboardOnlineBorder 1ms ease forwards;
  animation-delay: calc(var(--dashboard-underline-duration, 5s) + 150ms);
}

.dashboard-online-border::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  border:2px solid rgba(34, 211, 238, .78);
  box-shadow:
    inset 0 0 0 2px rgba(34, 211, 238, .22),
    0 0 0 6px rgba(34, 211, 238, .12);
  opacity:0;
  pointer-events:none;
}

@keyframes dashboardOnlineBorder{
  to { opacity:1; }
}

hr.sep{border:none; border-top:1px solid var(--line); margin:16px 0;}
hr.sep.sep--section{margin:22px 0;}

/* Collapsible sections */
.details{margin-top:12px;}
.details__summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--accentBorder);
  background: rgba(27,121,255,.08);
  font-weight:900;
  color:#0f1a3a;
}
.details summary::-webkit-details-marker{display:none;}
.details__hint{font-weight:800; font-size:12px; color:var(--muted);}
.details__content{padding-top:14px;}

.row{display:flex; gap:14px; align-items:center;}
.row--between{justify-content:space-between;}
.inline{display:flex; gap:10px; align-items:center;}

.grid{display:grid; gap:14px;}
.grid--2{grid-template-columns: 1fr 1fr;}
.grid--3{grid-template-columns: 1fr 1fr 1fr;}

/* Typography */
.kicker{color:var(--muted); font-size:12px; letter-spacing:.35px; text-transform:uppercase;}
.h2{
  margin:0;
  font-size:22px;
  font-weight:760;
  letter-spacing:-0.03em;
  padding:0 0 12px 0;
  color:transparent;
  background: linear-gradient(90deg, #0f1a3a 0%, #1b2a55 55%, #0f2e66 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px 6px rgba(27,121,255,.10);
  position:relative;
}

.h2--dashboard{font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;}

.h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:92px;
  height:3px;
  border-radius:6px;
  background: linear-gradient(90deg, rgba(27,121,255,.75), rgba(27,121,255,.15));
  opacity:1;
  transform:none;
  animation:none;
}

.h2--dashboard::after{
  width:100%;
  height:4px;
  border-radius:6px;
  background: linear-gradient(90deg,
    rgba(27,121,255,.98) 0%,
    rgba(125,211,252,.70) 40%,
    rgba(255,255,255,.92) 52%,
    rgba(125,211,252,.70) 66%,
    rgba(27,121,255,.98) 100%
  );
  background-size:200% 100%;
  background-position:0% 50%;
  opacity:.8;
  transform: scaleX(0);
  transform-origin:left;
  box-shadow: inset 0 0 0 1px rgba(27,121,255,.30);
  animation: dashboardUnderlineFill var(--dashboard-underline-duration, 5s) ease-in-out forwards;
}

@keyframes dashboardUnderlineFill{
  0%   {transform: scaleX(0);    opacity:.75; background-position:0% 50%;   box-shadow: inset 0 0 0 1px rgba(27,121,255,.30);}
  18%  {transform: scaleX(.18); opacity:.95; background-position:18% 50%;}
  38%  {transform: scaleX(.60); opacity:1;   background-position:52% 50%;}
  55%  {transform: scaleX(.92); opacity:1;   background-position:86% 50%;}
  66%  {transform: scaleX(1);    opacity:1;   background-position:100% 50%; box-shadow: inset 0 0 0 1px rgba(27,121,255,.24);}

  /* After ~4s: push a darker tone left -> right until the whole bar settles. */
  80%  {transform: scaleX(1);    opacity:.90;
        background: linear-gradient(90deg,
          rgba(6,26,66,.96) 0%,
          rgba(15,45,120,.70) 35%,
          rgba(255,255,255,.92) 52%,
          rgba(6,26,66,.96) 100%
        );
        background-size:200% 100%;
        background-position:0% 50%;
        box-shadow: inset 0 0 0 1px rgba(27,121,255,.20);
  }

  100% {transform: scaleX(1);    opacity:.55;
        background: linear-gradient(90deg,
          rgba(6,26,66,.98) 0%,
          rgba(15,45,120,.60) 50%,
          rgba(6,26,66,.98) 100%
        );
        background-size:200% 100%;
        background-position:100% 50%;
        box-shadow: inset 0 0 0 1px rgba(10,37,93,.22);
  }
}
}

.h3{margin:0 0 10px 0; font-size:14px; color:#0b1220; font-weight:800;}
.muted{color:var(--muted)}

/* Forms */
.form{display:flex; flex-direction:column; gap:12px;}

.label{font-size:12px; color:var(--muted); margin-bottom:6px; font-weight:650;}

.input, .textarea, select{
  width:100%;
  border-radius:12px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.92);
  color:var(--text);
  padding:11px 12px;
  outline:none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.textarea{resize:vertical; min-height:92px;}
.input--sm{padding:9px 10px; border-radius:10px; width:180px;}

.input:focus, .textarea:focus, select:focus{
  border-color: var(--accentBorder);
  box-shadow: 0 0 0 3px rgba(27,121,255,.18);
  background: #ffffff;
}

/* Buttons */
.btn{
  border:none;
  background: linear-gradient(180deg, rgba(27,121,255,1), rgba(27,121,255,.78));
  color:white;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  border:1px solid rgba(27,121,255,.35);
  transition: transform .08s ease, filter .15s ease, background .15s ease;
}
.btn:hover{filter:brightness(1.03)}
.btn:active{transform: translateY(1px)}

.btn--sm{padding:8px 12px; border-radius:10px; font-size:13px;}

/* Tables */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid rgba(15, 23, 42, .10);
  border-radius:14px;
  overflow:hidden;
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .04);
}

.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(15, 23, 42, .08);
  text-align:left;
  vertical-align:top;
}

.table th{
  background: rgba(243,247,255,.92);
  color:#334155;
  font-weight:850;
  font-size:12px;
  letter-spacing:.2px;
}

.table tr:last-child td{border-bottom:none;}
.table tbody tr:hover td{background: rgba(27,121,255,.07)}

/* Flashes */
.flashes{margin-bottom:14px;}
.flash{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(15, 23, 42, .12);
  margin-bottom:10px;
  background: rgba(255,255,255,.72);
}
.flash--success{border-color: rgba(22,163,74,.30); background: rgba(22,163,74,.08)}
.flash--error{border-color: rgba(239,68,68,.30); background: rgba(239,68,68,.08)}
