
:root{
  --bg:#151515;
  --bg-deep:#101010;
  --panel:#202020;
  --panel-2:#252525;
  --panel-3:#2c2c2c;
  --line:rgba(255,255,255,.085);
  --line-2:rgba(255,255,255,.14);
  --text:#f4f4f4;
  --muted:#9f9f9f;
  --soft:#d8d8d8;
  --hover:#303030;
  --active:#3e3e3e;
  --shadow:0 24px 70px rgba(0,0,0,.36);
  --radius:22px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  background:#151515;
}

body{
  margin:0;
  min-height:100vh;
  direction:rtl;
  color:var(--text);
  font-family:Tahoma,Arial,sans-serif;
  background:
    radial-gradient(circle at 20% -10%, rgba(255,255,255,.035), transparent 28%),
    linear-gradient(180deg,#1a1a1a 0%,#121212 100%);
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  max-width:1440px;
  margin:0 auto;
  padding:22px;
}

.dashboard-shell{
  display:grid;
  grid-template-columns:230px minmax(0,1fr);
  gap:22px;
  align-items:start;
}

.sidebar-card{
  position:sticky;
  top:22px;
  min-height:calc(100vh - 44px);
  padding:24px 22px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg,#202020,#161616);
  box-shadow:var(--shadow);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 0 26px;
  color:#fff;
  font-size:28px;
  font-weight:900;
  letter-spacing:-.04em;
}

.brand:before{
  content:"";
  width:34px;
  height:34px;
  border-radius:11px;
  background:
    linear-gradient(145deg,#f4f4f4,#a7a7a7);
  box-shadow:
    inset 0 0 0 7px #202020,
    0 14px 35px rgba(0,0,0,.35);
}

.brand span{color:#fff}

.nav-item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  margin-bottom:10px;
  padding:12px 14px;
  color:#e7e7e7;
  border:1px solid transparent;
  border-radius:15px;
  background:transparent;
  transition:.18s ease;
}

.nav-item:hover{
  background:#2d2d2d;
  border-color:var(--line);
}

.nav-item.active{
  background:linear-gradient(180deg,#4b4b4b,#363636);
  border-color:var(--line-2);
  box-shadow:0 14px 32px rgba(0,0,0,.28);
  color:#fff;
}

.sidebar-note{
  margin-top:32px;
  padding:20px 14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,#1b1b1b,#141414);
  text-align:center;
  line-height:1.8;
}

.sidebar-note strong{
  display:block;
  margin-bottom:8px;
  color:#fff;
  font-size:17px;
}

.sidebar-note small{
  display:block;
  color:#d5d5d5;
  word-break:break-all;
  direction:ltr;
  text-align:left;
  font-size:12px;
}

.dash-main{
  min-width:0;
}

.hero-card,
.panel-card,
.stat-card,
.config-card-item,
.quick-card,
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg,#252525,#1d1d1d);
  box-shadow:var(--shadow);
}

.hero-card{
  min-height:146px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:28px;
  margin-bottom:20px;
}

.eyebrow{
  margin:0 0 8px;
  color:#cfcfcf;
  font-size:14px;
  font-weight:800;
}

.hero-card h1{
  margin:0;
  color:#fff;
  font-size:36px;
  line-height:1.25;
  letter-spacing:-.04em;
}

.hero-sub{
  margin:10px 0 0;
  color:#d0d0d0;
  line-height:1.9;
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.btn,
button,
input[type="submit"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border:1px solid var(--line-2);
  border-radius:14px;
  padding:10px 16px;
  color:#fff;
  background:linear-gradient(180deg,#4a4a4a,#363636);
  font:inherit;
  font-weight:800;
  cursor:pointer;
  transition:.18s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover{
  background:linear-gradient(180deg,#555,#3f3f3f);
  transform:translateY(-1px);
}

.btn.ghost,
.ghost{
  background:linear-gradient(180deg,#363636,#292929);
  color:#fff;
}

.danger{
  background:linear-gradient(180deg,#4a4a4a,#353535) !important;
  color:#fff !important;
}

.compact,
.btn.compact,
button.compact{
  min-height:34px;
  padding:7px 12px;
  border-radius:12px;
  font-size:13px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:14px;
  margin-bottom:20px;
}

.stat-card{
  position:relative;
  min-height:124px;
  padding:18px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}

.stat-card:before{
  content:"";
  position:absolute;
  left:-36px;
  bottom:-44px;
  width:105px;
  height:105px;
  border-radius:50%;
  background:rgba(255,255,255,.055);
}

.stat-title{
  color:#d6d6d6;
  font-size:13px;
  font-weight:700;
}

.stat-value{
  margin:8px 0;
  color:#fff;
  font-size:32px;
  font-weight:900;
  line-height:1;
}

.stat-hint{
  color:#aaa;
  font-size:12px;
  line-height:1.7;
}

.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:20px;
}

.panel-card{
  padding:20px;
}

.card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.card-head h2,
.section-title h2{
  margin:0;
  color:#fff;
  font-size:22px;
  letter-spacing:-.03em;
}

.mini-link{
  color:#d6d6d6;
  font-size:13px;
}

.repo-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.repo-stats div,
.plan-list div{
  padding:15px;
  border:1px solid var(--line);
  border-radius:17px;
  background:linear-gradient(180deg,#2b2b2b,#222);
}

.repo-stats span,
.plan-list span{
  display:block;
  color:#bcbcbc;
  font-size:12px;
}

.repo-stats strong,
.plan-list strong{
  display:block;
  margin-top:6px;
  color:#fff;
  font-size:26px;
  font-weight:900;
}

.repo-stats small{
  color:#9a9a9a;
}

.plan-list{
  display:grid;
  gap:10px;
}

.plan-list div{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.search-card{
  margin-bottom:20px;
}

.search-form{
  display:flex;
  align-items:center;
  gap:10px;
}

.search-form input[type="text"]{
  flex:1;
  min-width:260px;
}

input,
textarea,
select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  color:#f2f2f2;
  background:#161616;
  font:inherit;
  outline:0;
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(255,255,255,.22);
  box-shadow:0 0 0 4px rgba(255,255,255,.045);
}

textarea{
  direction:ltr;
  text-align:left;
  font-family:Consolas,monospace;
  line-height:1.6;
}

label{
  display:block;
  margin:14px 0 7px;
  color:#e8e8e8;
  font-weight:800;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:22px 0 10px;
}

.table-card{
  padding:0;
  overflow:hidden;
}

table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:transparent;
}

th,
td{
  padding:14px 16px;
  text-align:right;
  vertical-align:middle;
  border-bottom:1px solid var(--line);
}

th{
  color:#f1f1f1;
  background:#252525;
  font-weight:900;
}

td{
  color:#e7e7e7;
  background:#1c1c1c;
}

tr:hover td{
  background:#232323;
}

.row-meta{
  display:flex;
  justify-content:flex-end;
  gap:7px;
  flex-wrap:wrap;
  margin-top:7px;
  direction:ltr;
}

.row-meta span{
  padding:4px 8px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#dcdcdc;
  background:#303030;
  font-size:11px;
}

.copy,
input.copy{
  max-width:310px;
  direction:ltr;
  text-align:left;
  color:#efefef;
  background:#171717;
  border-color:var(--line);
  font-size:12px;
}

.actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.actions form{
  margin:0;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 11px;
  color:#efefef !important;
  background:linear-gradient(180deg,#3a3a3a,#2d2d2d) !important;
  font-size:12px;
  white-space:nowrap;
}

.active,
.off,
.expired,
.warning,
.main,
.test,
.badge.main,
.badge.test,
.badge.active,
.badge.off,
.badge.expired,
.badge.warning,
.badge.name{
  color:#efefef !important;
  background:linear-gradient(180deg,#3a3a3a,#2d2d2d) !important;
}

.empty,
.empty-state,
.muted{
  color:#aaa;
}

.empty{
  text-align:center;
  padding:28px;
}

.quick-sections{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:20px;
}

.quick-card{
  display:block;
  padding:20px;
  color:#e8e8e8;
  overflow:hidden;
  position:relative;
}

.quick-card:before{
  content:"";
  position:absolute;
  left:-36px;
  bottom:-42px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
}

.quick-card span{
  color:#d1d1d1;
}

.quick-card strong{
  display:block;
  margin:8px 0;
  color:#fff;
  font-size:34px;
}

.quick-card small{
  color:#aaa;
}

.config-stats-grid{
  grid-template-columns:repeat(6,1fr);
}

.config-add-grid,
.config-edit-grid{
  display:grid;
  grid-template-columns:1fr 1fr 180px;
  gap:14px;
  align-items:end;
}

.bulk-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.inline-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.config-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:24px;
}

.config-card-item{
  padding:18px;
  overflow:hidden;
  position:relative;
  box-shadow:0 18px 55px rgba(0,0,0,.25);
}

.config-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.config-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.config-edit-form{
  position:relative;
  z-index:1;
}

.config-actions{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:12px;
}

.check{
  display:flex;
  align-items:center;
  gap:8px;
}

.check input{
  width:auto;
}

.bottom-check,
.glass-check{
  margin:0;
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#202020;
}

.mini-check{
  color:#d6d6d6;
  font-size:12px;
}

.error,
.notice{
  margin:12px 0 16px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  color:#f2f2f2;
  background:#252525;
  line-height:1.8;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.small-grid{
  grid-template-columns:180px 1fr;
}

.small{
  max-width:430px;
  margin:90px auto;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.topbar > div{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

::-webkit-scrollbar{
  width:10px;
  height:10px;
}

::-webkit-scrollbar-track{
  background:#161616;
}

::-webkit-scrollbar-thumb{
  background:#3a3a3a;
  border:2px solid #161616;
  border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
  background:#4a4a4a;
}

@media(max-width:1200px){
  .stats-grid,
  .config-stats-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:1000px){
  .dashboard-shell{
    grid-template-columns:1fr;
  }

  .sidebar-card{
    position:relative;
    top:auto;
    min-height:auto;
  }

  .info-grid,
  .config-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .container{
    padding:12px;
  }

  .hero-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-card h1{
    font-size:26px;
  }

  .stats-grid,
  .repo-stats,
  .quick-sections,
  .config-add-grid,
  .config-edit-grid,
  .grid,
  .small-grid{
    grid-template-columns:1fr;
  }

  .search-form{
    flex-direction:column;
    align-items:stretch;
  }

  table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
}

/* Vexsil vibe layer - grey base + subtle lime accent */
:root{
  --accent:#b7ff3c;
  --accent-soft:rgba(183,255,60,.14);
  --accent-line:rgba(183,255,60,.32);
}

/* subtle background life */
body{
  background:
    radial-gradient(circle at 18% 0%, rgba(183,255,60,.045), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255,255,255,.035), transparent 26%),
    linear-gradient(180deg,#1b1b1b 0%,#111 100%) !important;
}

/* logo mark more alive */
.brand:before{
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #b7ff3c 45%, #5f6f35 100%) !important;
  box-shadow:
    inset 0 0 0 7px #202020,
    0 0 28px rgba(183,255,60,.16),
    0 14px 35px rgba(0,0,0,.38) !important;
}

/* active sidebar like sample */
.nav-item.active{
  position:relative;
  background:
    linear-gradient(180deg,#464646,#353535) !important;
  border-color:rgba(255,255,255,.16) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 14px 34px rgba(0,0,0,.26),
    -6px 0 18px rgba(183,255,60,.10) !important;
}

.nav-item.active:before{
  content:"";
  position:absolute;
  right:-9px;
  top:50%;
  transform:translateY(-50%);
  width:4px;
  height:28px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 18px rgba(183,255,60,.5);
}

/* hero with slight premium glow */
.hero-card{
  position:relative;
  overflow:hidden;
}

.hero-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(183,255,60,.06), transparent 30%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.025));
  pointer-events:none;
}

.hero-card > *{
  position:relative;
  z-index:1;
}

.eyebrow{
  color:var(--accent) !important;
  text-shadow:0 0 20px rgba(183,255,60,.18);
}

/* cards get a thin accent line */
.stat-card,
.panel-card,
.config-card-item,
.quick-card{
  position:relative;
}

.stat-card:after,
.panel-card:after,
.config-card-item:after,
.quick-card:after{
  content:"";
  position:absolute;
  top:0;
  right:22px;
  left:22px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  opacity:.75;
}

/* stat cards small glowing dot */
.stat-title:before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-left:7px;
  border-radius:50%;
  background:#777;
  vertical-align:middle;
}

.stat-card:nth-child(1) .stat-title:before,
.stat-card:nth-child(2) .stat-title:before{
  background:var(--accent);
  box-shadow:0 0 12px rgba(183,255,60,.45);
}

/* primary buttons alive, secondary stays grey */
.hero-actions .btn:first-child,
.search-form .btn:first-of-type,
.add-config-card button[type="submit"]{
  background:
    linear-gradient(180deg,#5a5a5a,#3d3d3d) !important;
  border-color:rgba(183,255,60,.22) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 10px 28px rgba(0,0,0,.26),
    0 0 22px rgba(183,255,60,.07) !important;
}

.hero-actions .btn:first-child:hover,
.search-form .btn:first-of-type:hover,
.add-config-card button[type="submit"]:hover{
  border-color:rgba(183,255,60,.38) !important;
  box-shadow:
    0 12px 30px rgba(0,0,0,.3),
    0 0 28px rgba(183,255,60,.12) !important;
}

/* sidebar note more premium */
.sidebar-note{
  background:
    radial-gradient(circle at 50% 0%, rgba(183,255,60,.055), transparent 38%),
    linear-gradient(180deg,#1c1c1c,#141414) !important;
}

/* section titles with small accent */
.section-title h2:before,
.card-head h2:before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  margin-left:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 14px rgba(183,255,60,.4);
  vertical-align:middle;
}

/* table hover less dead */
tr:hover td{
  background:#262626 !important;
}

/* badges a bit more dimensional */
.badge{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 6px 18px rgba(0,0,0,.12) !important;
}

/* inputs slight depth */
input,
textarea,
select{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(183,255,60,.22) !important;
  box-shadow:
    0 0 0 4px rgba(183,255,60,.045),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}


/* Vexsil vibe layer - grey base + subtle lime accent */
:root{
  --accent:#b7ff3c;
  --accent-soft:rgba(183,255,60,.14);
  --accent-line:rgba(183,255,60,.32);
}

/* subtle background life */
body{
  background:
    radial-gradient(circle at 18% 0%, rgba(183,255,60,.045), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255,255,255,.035), transparent 26%),
    linear-gradient(180deg,#1b1b1b 0%,#111 100%) !important;
}

/* logo mark more alive */
.brand:before{
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #b7ff3c 45%, #5f6f35 100%) !important;
  box-shadow:
    inset 0 0 0 7px #202020,
    0 0 28px rgba(183,255,60,.16),
    0 14px 35px rgba(0,0,0,.38) !important;
}

/* active sidebar like sample */
.nav-item.active{
  position:relative;
  background:
    linear-gradient(180deg,#464646,#353535) !important;
  border-color:rgba(255,255,255,.16) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 14px 34px rgba(0,0,0,.26),
    -6px 0 18px rgba(183,255,60,.10) !important;
}

.nav-item.active:before{
  content:"";
  position:absolute;
  right:-9px;
  top:50%;
  transform:translateY(-50%);
  width:4px;
  height:28px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 18px rgba(183,255,60,.5);
}

/* hero with slight premium glow */
.hero-card{
  position:relative;
  overflow:hidden;
}

.hero-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(183,255,60,.06), transparent 30%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.025));
  pointer-events:none;
}

.hero-card > *{
  position:relative;
  z-index:1;
}

.eyebrow{
  color:var(--accent) !important;
  text-shadow:0 0 20px rgba(183,255,60,.18);
}

/* cards get a thin accent line */
.stat-card,
.panel-card,
.config-card-item,
.quick-card{
  position:relative;
}

.stat-card:after,
.panel-card:after,
.config-card-item:after,
.quick-card:after{
  content:"";
  position:absolute;
  top:0;
  right:22px;
  left:22px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  opacity:.75;
}

/* stat cards small glowing dot */
.stat-title:before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-left:7px;
  border-radius:50%;
  background:#777;
  vertical-align:middle;
}

.stat-card:nth-child(1) .stat-title:before,
.stat-card:nth-child(2) .stat-title:before{
  background:var(--accent);
  box-shadow:0 0 12px rgba(183,255,60,.45);
}

/* primary buttons alive, secondary stays grey */
.hero-actions .btn:first-child,
.search-form .btn:first-of-type,
.add-config-card button[type="submit"]{
  background:
    linear-gradient(180deg,#5a5a5a,#3d3d3d) !important;
  border-color:rgba(183,255,60,.22) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 10px 28px rgba(0,0,0,.26),
    0 0 22px rgba(183,255,60,.07) !important;
}

.hero-actions .btn:first-child:hover,
.search-form .btn:first-of-type:hover,
.add-config-card button[type="submit"]:hover{
  border-color:rgba(183,255,60,.38) !important;
  box-shadow:
    0 12px 30px rgba(0,0,0,.3),
    0 0 28px rgba(183,255,60,.12) !important;
}

/* sidebar note more premium */
.sidebar-note{
  background:
    radial-gradient(circle at 50% 0%, rgba(183,255,60,.055), transparent 38%),
    linear-gradient(180deg,#1c1c1c,#141414) !important;
}

/* section titles with small accent */
.section-title h2:before,
.card-head h2:before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  margin-left:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 14px rgba(183,255,60,.4);
  vertical-align:middle;
}

/* table hover less dead */
tr:hover td{
  background:#262626 !important;
}

/* badges a bit more dimensional */
.badge{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 6px 18px rgba(0,0,0,.12) !important;
}

/* inputs slight depth */
input,
textarea,
select{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(183,255,60,.22) !important;
  box-shadow:
    0 0 0 4px rgba(183,255,60,.045),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}


/* Vexsil layout polish */
:root{
  --accent:#a8ff2f;
  --accent-soft:rgba(168,255,47,.10);
  --accent-line:rgba(168,255,47,.24);
}

.container{
  padding:28px 28px 20px;
}

.dashboard-shell{
  gap:26px;
}

.sidebar-card{
  display:flex;
  flex-direction:column;
  padding:22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(168,255,47,.045), transparent 30%),
    linear-gradient(180deg,#202020,#151515) !important;
}

.brand-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:28px;
}

.brand{
  margin:0 !important;
  justify-content:flex-start !important;
  font-size:30px !important;
}

.brand:before{
  display:none !important;
}

.brand-chip{
  width:31px;
  height:31px;
  border-radius:10px;
  background:
    radial-gradient(circle at 35% 30%, #efffd2, var(--accent) 46%, #526d21 100%);
  box-shadow:
    inset 0 0 0 6px #202020,
    0 0 24px rgba(168,255,47,.24),
    0 12px 28px rgba(0,0,0,.34);
}

.menu-label{
  margin:18px 4px 10px;
  color:#8d8d8d;
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  direction:ltr;
  text-align:left;
}

.nav-item{
  justify-content:flex-start !important;
  text-align:right;
  min-height:46px;
  padding:12px 14px !important;
  color:#d8d8d8 !important;
  position:relative;
}

.nav-item:after{
  content:"";
  width:7px;
  height:7px;
  margin-right:auto;
  border-radius:99px;
  background:#4a4a4a;
  opacity:.8;
}

.nav-item.active:after{
  background:var(--accent);
  box-shadow:0 0 14px rgba(168,255,47,.55);
}

.nav-item.active:before{
  right:auto !important;
  left:-9px !important;
  height:32px !important;
  background:var(--accent) !important;
}

.sidebar-note{
  margin-top:auto !important;
  text-align:right !important;
}

.sidebar-note strong{
  text-align:right;
}

.sidebar-note small{
  text-align:left !important;
  direction:ltr;
  color:#dcdcdc !important;
}

/* less neon, more premium */
.eyebrow{
  color:#d8ff93 !important;
}

.hero-card{
  min-height:164px;
  padding:32px !important;
}

.hero-card h1{
  font-size:38px !important;
}

.hero-actions .btn{
  min-width:128px;
}

.stats-grid{
  gap:16px;
}

.stat-card{
  min-height:132px;
  padding:20px !important;
}

.stat-card:before{
  opacity:.65;
}

.stat-title:before{
  opacity:.75;
}

.info-grid{
  gap:16px;
}

.panel-card{
  padding:22px !important;
}

.repo-stats div,
.plan-list div{
  min-height:96px;
}

.search-card{
  padding:18px 20px !important;
}

.search-form input[type="text"]{
  height:46px;
}

.table-card{
  border-radius:22px !important;
}

th{
  height:54px;
}

td{
  height:58px;
}

.section-title{
  margin-top:28px !important;
  padding:0 4px;
}

.section-title h2{
  font-size:24px !important;
}

/* make configs page more like app dashboard */
.quick-card{
  min-height:138px;
}

.add-config-card{
  background:
    radial-gradient(circle at 10% 0%, rgba(168,255,47,.045), transparent 26%),
    linear-gradient(180deg,#252525,#1d1d1d) !important;
}

.config-card-item{
  min-height:300px;
}

/* reduce excessive green dots */
.stat-card:not(:nth-child(1)):not(:nth-child(2)) .stat-title:before{
  background:#777 !important;
  box-shadow:none !important;
}

.card-head h2:before,
.section-title h2:before{
  width:7px !important;
  height:7px !important;
  opacity:.9;
}

@media(max-width:1000px){
  .sidebar-card{
    min-height:auto;
  }

  .brand-wrap{
    margin-bottom:16px;
  }

  .menu-label{
    display:none;
  }
}


/* Vexsil dashboard/table polish */
:root{
  --accent:#a8ff2f;
}

/* reduce extra neon, keep premium */
.hero-card{
  background:
    radial-gradient(circle at 18% 12%, rgba(168,255,47,.055), transparent 28%),
    linear-gradient(180deg,#262626,#1d1d1d) !important;
  border-color:rgba(255,255,255,.10) !important;
}

.hero-card:before{
  opacity:.45 !important;
}

.eyebrow{
  font-size:13px !important;
  letter-spacing:.02em;
}

/* make top stat cards cleaner */
.stats-grid{
  grid-template-columns:repeat(6,minmax(0,1fr));
}

.stat-card{
  background:
    linear-gradient(180deg,#272727,#1f1f1f) !important;
  border-color:rgba(255,255,255,.10) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 18px 45px rgba(0,0,0,.24) !important;
}

.stat-card:hover{
  transform:translateY(-2px);
  border-color:rgba(168,255,47,.20) !important;
}

.stat-title{
  font-size:12px !important;
  color:#c9c9c9 !important;
}

.stat-value{
  font-size:34px !important;
}

.stat-hint{
  color:#9e9e9e !important;
}

/* only important stats get lime dots */
.stat-card .stat-title:before{
  background:#666 !important;
  box-shadow:none !important;
}

.stat-card:nth-child(1) .stat-title:before,
.stat-card:nth-child(2) .stat-title:before{
  background:var(--accent) !important;
  box-shadow:0 0 12px rgba(168,255,47,.45) !important;
}

/* info panels */
.info-grid .panel-card{
  min-height:190px;
}

.repo-stats div,
.plan-list div{
  background:
    linear-gradient(180deg,#2b2b2b,#222) !important;
  transition:.18s ease;
}

.repo-stats div:hover,
.plan-list div:hover{
  transform:translateY(-1px);
  border-color:rgba(168,255,47,.18) !important;
}

/* search area more like sample */
.search-card{
  background:
    linear-gradient(180deg,#262626,#1e1e1e) !important;
}

.search-form{
  gap:12px !important;
}

.search-form input[type="text"]{
  background:#151515 !important;
  border-color:rgba(255,255,255,.09) !important;
  height:48px !important;
}

.search-form .btn{
  min-width:96px;
}

/* section titles */
.section-title{
  margin-top:34px !important;
}

.section-title h2{
  display:flex;
  align-items:center;
  gap:8px;
}

.section-title h2:before{
  margin-left:0 !important;
}

/* table as modern card */
.table-card{
  background:#1d1d1d !important;
  border-color:rgba(255,255,255,.09) !important;
  overflow:hidden;
}

table{
  border-spacing:0 !important;
}

th{
  background:#262626 !important;
  color:#f6f6f6 !important;
  font-size:14px;
}

td{
  background:#1c1c1c !important;
  color:#e9e9e9 !important;
}

tbody tr{
  transition:.18s ease;
}

tbody tr:hover td{
  background:#252525 !important;
}

tbody tr:hover{
  box-shadow:inset 3px 0 0 rgba(168,255,47,.55);
}

.row-meta span,
.badge{
  background:linear-gradient(180deg,#363636,#2b2b2b) !important;
  color:#eeeeee !important;
  border-color:rgba(255,255,255,.10) !important;
}

.copy{
  background:#151515 !important;
  color:#eeeeee !important;
  border-color:rgba(255,255,255,.10) !important;
  height:38px;
}

/* action buttons in table */
.actions .btn,
.actions button,
td .btn,
td button{
  min-height:34px !important;
  padding:7px 13px !important;
  border-radius:12px !important;
  background:linear-gradient(180deg,#444,#333) !important;
}

.actions .btn:hover,
.actions button:hover{
  border-color:rgba(168,255,47,.24) !important;
}

/* sidebar slightly calmer */
.sidebar-card{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 24px 70px rgba(0,0,0,.36) !important;
}

.brand-chip{
  box-shadow:
    inset 0 0 0 6px #202020,
    0 0 18px rgba(168,255,47,.20),
    0 12px 28px rgba(0,0,0,.34) !important;
}

.nav-item.active:before{
  box-shadow:0 0 14px rgba(168,255,47,.42) !important;
}

.nav-item{
  font-size:15px;
}

/* better page balance */
.dash-main{
  padding-bottom:40px;
}

@media(max-width:1200px){
  .stats-grid{
    grid-template-columns:repeat(3,1fr);
  }
}


/* Vexsil compact premium layout */
.container{
  max-width:1480px !important;
  padding:22px 28px 18px !important;
}

.dashboard-shell{
  grid-template-columns:230px minmax(0,1fr) !important;
  gap:22px !important;
}

.sidebar-card{
  border-radius:26px !important;
  padding:22px !important;
}

.brand-wrap{
  margin-bottom:24px !important;
}

.brand{
  font-size:29px !important;
}

.menu-label{
  margin:16px 4px 8px !important;
  font-size:10px !important;
}

.nav-item{
  min-height:44px !important;
  margin-bottom:8px !important;
}

.sidebar-note{
  padding:18px 14px !important;
  border-radius:17px !important;
}

/* hero tighter */
.hero-card{
  min-height:128px !important;
  padding:24px 28px !important;
  margin-bottom:16px !important;
  border-radius:24px !important;
}

.hero-card h1{
  font-size:34px !important;
}

.hero-sub{
  margin-top:6px !important;
  font-size:14px !important;
}

.hero-actions .btn{
  min-height:42px !important;
  min-width:120px !important;
}

/* stats more compact */
.stats-grid{
  gap:14px !important;
  margin-bottom:16px !important;
}

.stat-card{
  min-height:108px !important;
  padding:16px 17px !important;
  border-radius:20px !important;
}

.stat-value{
  font-size:31px !important;
  margin:7px 0 !important;
}

.stat-title{
  font-size:12px !important;
}

.stat-hint{
  font-size:11.5px !important;
}

/* info panels tighter */
.info-grid{
  gap:14px !important;
  margin-bottom:16px !important;
}

.info-grid .panel-card{
  min-height:160px !important;
}

.panel-card{
  padding:18px !important;
  border-radius:22px !important;
}

.card-head{
  margin-bottom:12px !important;
}

.card-head h2{
  font-size:21px !important;
}

.repo-stats{
  gap:10px !important;
}

.repo-stats div,
.plan-list div{
  min-height:82px !important;
  padding:13px !important;
}

/* search compact */
.search-card{
  padding:16px 18px !important;
  margin-bottom:18px !important;
}

.search-form input[type="text"]{
  height:44px !important;
}

.search-form .btn{
  min-height:44px !important;
}

/* section/table */
.section-title{
  margin-top:22px !important;
  margin-bottom:8px !important;
}

.section-title h2{
  font-size:23px !important;
}

.table-card{
  border-radius:21px !important;
}

th{
  height:48px !important;
  padding:12px 14px !important;
}

td{
  height:52px !important;
  padding:12px 14px !important;
}

.copy{
  height:36px !important;
}

/* reduce lime noise */
.hero-card:before{
  opacity:.32 !important;
}

.brand-chip{
  filter:saturate(.9);
}

.nav-item.active:before{
  opacity:.9;
}

/* more premium hover, no movement on mobile */
.stat-card,
.panel-card,
.table-card{
  transition:.18s ease;
}

.panel-card:hover{
  border-color:rgba(255,255,255,.13) !important;
}

/* configs page compact too */
.quick-sections{
  gap:14px !important;
  margin-bottom:16px !important;
}

.quick-card{
  min-height:118px !important;
  padding:18px !important;
}

.config-grid{
  gap:14px !important;
}

.config-card-item{
  min-height:260px !important;
  padding:16px !important;
}

.add-config-card textarea{
  min-height:150px;
}

@media(max-width:1200px){
  .dashboard-shell{
    grid-template-columns:1fr !important;
  }

  .sidebar-card{
    min-height:auto !important;
  }
}


/* Vexsil app-like final polish */
.nav-item{
  justify-content:flex-start !important;
  gap:11px !important;
  padding:10px 12px !important;
}

.nav-item span:last-child{
  flex:1;
  text-align:right;
}

.nav-ico{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#292929;
  border:1px solid rgba(255,255,255,.07);
  color:#bdbdbd;
  font-size:14px;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.nav-item.active .nav-ico{
  color:var(--accent);
  background:rgba(168,255,47,.10);
  border-color:rgba(168,255,47,.20);
  box-shadow:0 0 18px rgba(168,255,47,.14);
}

.nav-item:after{
  width:6px !important;
  height:6px !important;
  opacity:.55 !important;
}

.nav-item.active:after{
  opacity:1 !important;
}

/* hero premium detail */
.hero-card{
  border-radius:26px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 26px 80px rgba(0,0,0,.34) !important;
}

.hero-card h1{
  text-shadow:0 10px 30px rgba(0,0,0,.32);
}

.hero-actions .btn{
  border-radius:14px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 14px 34px rgba(0,0,0,.25) !important;
}

/* stat cards app cards */
.stat-card{
  isolation:isolate;
}

.stat-card:after{
  right:16px !important;
  left:16px !important;
  background:linear-gradient(90deg, transparent, rgba(168,255,47,.22), transparent) !important;
  opacity:.35 !important;
}

.stat-card:hover:after{
  opacity:.75 !important;
}

.stat-card:hover{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 24px 60px rgba(0,0,0,.32) !important;
}

/* panel cards */
.panel-card{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 22px 60px rgba(0,0,0,.30) !important;
}

.card-head h2,
.section-title h2{
  text-shadow:0 8px 24px rgba(0,0,0,.28);
}

/* search bar like product UI */
.search-form{
  background:#171717;
  border:1px solid rgba(255,255,255,.07);
  border-radius:17px;
  padding:8px;
}

.search-card{
  padding:10px !important;
}

.search-form input[type="text"]{
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

.search-form input[type="text"]:focus{
  box-shadow:none !important;
}

.search-form .btn{
  border-radius:13px !important;
}

/* tables more polished */
.table-card{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 24px 65px rgba(0,0,0,.32) !important;
}

th:first-child{
  border-top-right-radius:18px;
}

th:last-child{
  border-top-left-radius:18px;
}

td strong{
  font-size:16px;
}

.row-meta span{
  font-size:11px;
  opacity:.95;
}

.copy{
  border-radius:13px !important;
}

/* sidebar final */
.sidebar-card{
  overflow:hidden;
}

.sidebar-card:before{
  content:"";
  position:absolute;
  top:-80px;
  right:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(168,255,47,.035);
  pointer-events:none;
}

.brand-wrap,
.menu-label,
.nav-item,
.sidebar-note{
  position:relative;
  z-index:1;
}

/* configs page also cleaner */
.config-card-item:hover,
.quick-card:hover{
  border-color:rgba(168,255,47,.18) !important;
  transform:translateY(-1px);
}

.config-card-item,
.quick-card{
  transition:.18s ease;
}

textarea{
  min-height:120px;
}


/* Vexsil configs page polish */

/* sidebar: remove extra dots, keep clean icons */
.nav-item:after{
  display:none !important;
}

.nav-item{
  padding:11px 13px !important;
  gap:12px !important;
}

.nav-ico{
  flex:0 0 30px;
  width:30px !important;
  height:30px !important;
  border-radius:11px !important;
  font-size:13px !important;
}

.nav-item.active{
  background:
    radial-gradient(circle at 14% 50%, rgba(168,255,47,.12), transparent 34%),
    linear-gradient(180deg,#484848,#343434) !important;
}

/* configs hero actions */
.configs-hero .hero-actions{
  min-width:290px;
  justify-content:flex-start;
}

.configs-hero .hero-actions .btn{
  min-width:120px;
}

/* quick cards more premium */
.quick-card{
  background:
    radial-gradient(circle at 12% 0%, rgba(168,255,47,.045), transparent 35%),
    linear-gradient(180deg,#282828,#202020) !important;
}

.quick-card strong{
  font-size:32px !important;
}

.quick-card:hover{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 24px 65px rgba(0,0,0,.33),
    0 0 28px rgba(168,255,47,.045) !important;
}

/* add config form */
.add-config-card{
  padding:24px !important;
}

.add-config-card .card-head{
  margin-bottom:20px !important;
}

.add-config-card form{
  display:grid;
  gap:16px;
}

.config-add-grid{
  grid-template-columns:1.1fr 1.1fr 180px !important;
  gap:16px !important;
  align-items:end !important;
}

.config-add-grid label{
  margin-top:0 !important;
}

.add-config-card input,
.add-config-card select,
.add-config-card textarea{
  background:#141414 !important;
  border-color:rgba(255,255,255,.085) !important;
}

.add-config-card input:hover,
.add-config-card select:hover,
.add-config-card textarea:hover{
  border-color:rgba(168,255,47,.18) !important;
}

.add-config-card textarea{
  min-height:170px !important;
  border-radius:18px !important;
  padding:18px !important;
  line-height:1.8 !important;
}

.glass-check,
.bottom-check{
  height:46px;
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:
    linear-gradient(180deg,#303030,#242424) !important;
  border-color:rgba(255,255,255,.10) !important;
}

.glass-check input,
.bottom-check input{
  accent-color:#a8ff2f;
}

/* labels */
.add-config-card label,
.config-card-item label{
  color:#f1f1f1 !important;
  font-size:14px;
}

/* bulk panel */
.bulk-panel{
  background:
    radial-gradient(circle at 90% 0%, rgba(168,255,47,.04), transparent 30%),
    linear-gradient(180deg,#252525,#1d1d1d) !important;
}

.bulk-panel .card-head{
  flex:1 1 100%;
}

/* config item cards */
.config-card-item{
  background:
    radial-gradient(circle at 0% 0%, rgba(168,255,47,.035), transparent 32%),
    linear-gradient(180deg,#262626,#1e1e1e) !important;
}

.config-card-item textarea{
  min-height:130px !important;
}

.config-card-top{
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.config-actions{
  justify-content:flex-end !important;
}

/* better badges */
.config-badges .badge,
.config-card-top .badge{
  font-size:11.5px !important;
  padding:6px 10px !important;
}

/* page balance */
.configs-shell .stats-grid{
  margin-bottom:18px !important;
}

.configs-shell .search-card{
  margin-bottom:22px !important;
}

/* responsive */
@media(max-width:900px){
  .config-add-grid{
    grid-template-columns:1fr !important;
  }

  .configs-hero .hero-actions{
    min-width:0;
  }
}


/* Vexsil form pages polish: create/edit/login */
.container > .topbar,
.container > .card,
.container > form.card{
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
}

.topbar{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:16px !important;
  margin:18px auto 22px !important;
  padding:0 4px !important;
}

.topbar h1,
.topbar h2{
  margin:0 !important;
  color:#fff !important;
  font-size:34px !important;
  letter-spacing:-.04em !important;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.topbar .btn,
.topbar a.btn{
  min-width:96px;
}

/* main form card */
.container > .card,
.container > form.card{
  position:relative;
  overflow:hidden;
  padding:28px !important;
  border-radius:26px !important;
  border:1px solid rgba(255,255,255,.10) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(168,255,47,.045), transparent 30%),
    linear-gradient(180deg,#252525,#1b1b1b) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 28px 80px rgba(0,0,0,.36) !important;
}

.container > .card:before,
.container > form.card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.025));
  pointer-events:none;
}

.container > .card > *,
.container > form.card > *{
  position:relative;
  z-index:1;
}

/* form layout */
.card .grid,
form.card .grid{
  gap:18px !important;
}

.card label,
form.card label{
  color:#f2f2f2 !important;
  font-size:15px !important;
  margin-top:16px !important;
  margin-bottom:8px !important;
}

.card input,
.card select,
.card textarea,
form.card input,
form.card select,
form.card textarea{
  min-height:46px;
  background:#141414 !important;
  border:1px solid rgba(255,255,255,.09) !important;
  border-radius:15px !important;
  color:#f2f2f2 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025),
    0 8px 22px rgba(0,0,0,.14);
}

.card input:hover,
.card select:hover,
.card textarea:hover,
form.card input:hover,
form.card select:hover,
form.card textarea:hover{
  border-color:rgba(168,255,47,.16) !important;
}

.card input:focus,
.card select:focus,
.card textarea:focus,
form.card input:focus,
form.card select:focus,
form.card textarea:focus{
  border-color:rgba(168,255,47,.26) !important;
  box-shadow:
    0 0 0 4px rgba(168,255,47,.045),
    inset 0 1px 0 rgba(255,255,255,.04) !important;
}

/* checkbox row */
.card .check,
form.card .check{
  min-height:48px;
  margin-top:22px !important;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:15px;
  background:linear-gradient(180deg,#303030,#242424);
}

.card .check input,
form.card .check input{
  width:auto !important;
  min-height:auto !important;
  accent-color:#a8ff2f;
  box-shadow:none !important;
}

/* notice/info box */
.notice{
  margin-top:18px !important;
  padding:16px 18px !important;
  border-radius:18px !important;
  border:1px solid rgba(168,255,47,.13) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(168,255,47,.045), transparent 36%),
    linear-gradient(180deg,#282828,#202020) !important;
  color:#f0f0f0 !important;
}

/* submit area */
.card button[type="submit"],
form.card button[type="submit"]{
  min-width:110px;
  margin-top:16px;
  background:
    linear-gradient(180deg,#505050,#3a3a3a) !important;
  border-color:rgba(168,255,47,.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 12px 34px rgba(0,0,0,.28),
    0 0 24px rgba(168,255,47,.07) !important;
}

.card button[type="submit"]:hover,
form.card button[type="submit"]:hover{
  border-color:rgba(168,255,47,.38) !important;
}

/* login page */
.small.card{
  max-width:440px !important;
  margin-top:90px !important;
}

.small.card h1{
  font-size:32px !important;
  text-align:center;
  margin-bottom:24px !important;
}

.small.card:after{
  content:"Vexsil";
  display:block;
  margin-top:22px;
  color:#8d8d8d;
  text-align:center;
  font-weight:800;
  letter-spacing:.08em;
}

/* date input icon visibility */
input[type="date"]{
  color-scheme:dark;
}

/* responsive */
@media(max-width:760px){
  .topbar{
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .topbar h1,
  .topbar h2{
    font-size:26px !important;
  }

  .container > .card,
  .container > form.card{
    padding:20px !important;
  }
}


/* Vexsil final form-page polish */
body:not(:has(.dashboard-shell)) .container{
  max-width:1320px !important;
  padding-top:42px !important;
}

body:not(:has(.dashboard-shell)) .topbar{
  max-width:1120px !important;
  min-height:104px;
  padding:26px 30px !important;
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  background:
    radial-gradient(circle at 14% 0%, rgba(168,255,47,.06), transparent 30%),
    linear-gradient(180deg,#252525,#1d1d1d);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 26px 80px rgba(0,0,0,.34);
}

body:not(:has(.dashboard-shell)) .topbar h1,
body:not(:has(.dashboard-shell)) .topbar h2{
  font-size:38px !important;
}

body:not(:has(.dashboard-shell)) .topbar:before{
  content:"Vexsil";
  position:absolute;
  left:30px;
  top:24px;
  color:#a8ff2f;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  direction:ltr;
}

body:not(:has(.dashboard-shell)) .topbar{
  position:relative;
}

body:not(:has(.dashboard-shell)) .card,
body:not(:has(.dashboard-shell)) form.card{
  max-width:1120px !important;
  margin-top:22px !important;
}

body:not(:has(.dashboard-shell)) form.card{
  display:grid;
  gap:18px;
}

body:not(:has(.dashboard-shell)) form.card .grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 20px !important;
}

body:not(:has(.dashboard-shell)) form.card .notice{
  margin-top:8px !important;
}

body:not(:has(.dashboard-shell)) form.card button[type="submit"]{
  justify-self:end;
  min-width:130px;
  min-height:46px;
}

body:not(:has(.dashboard-shell)) .btn[href="/"],
body:not(:has(.dashboard-shell)) .topbar .btn{
  background:
    linear-gradient(180deg,#444,#333) !important;
  border-color:rgba(255,255,255,.14) !important;
}

body:not(:has(.dashboard-shell)) .btn[href="/"]:before,
body:not(:has(.dashboard-shell)) .topbar .btn:before{
  content:"↩";
  margin-left:8px;
  color:#a8ff2f;
}

body:not(:has(.dashboard-shell)) .check{
  justify-content:center;
  font-weight:900;
}

body:not(:has(.dashboard-shell)) input[type="date"]{
  direction:ltr;
  text-align:left;
}

body:not(:has(.dashboard-shell)) select{
  cursor:pointer;
}

/* login card final */
.small.card{
  position:relative;
}

.small.card:before{
  content:"";
  display:block;
  width:42px;
  height:42px;
  margin:0 auto 16px;
  border-radius:14px;
  background:
    radial-gradient(circle at 35% 30%, #efffd2, #a8ff2f 46%, #526d21 100%);
  box-shadow:
    inset 0 0 0 8px #202020,
    0 0 24px rgba(168,255,47,.22),
    0 14px 34px rgba(0,0,0,.34);
}

/* mobile */
@media(max-width:760px){
  body:not(:has(.dashboard-shell)) .topbar{
    min-height:auto;
    padding:24px 22px !important;
  }

  body:not(:has(.dashboard-shell)) .topbar h1,
  body:not(:has(.dashboard-shell)) .topbar h2{
    font-size:28px !important;
  }

  body:not(:has(.dashboard-shell)) form.card .grid{
    grid-template-columns:1fr;
  }

  body:not(:has(.dashboard-shell)) form.card button[type="submit"]{
    justify-self:stretch;
  }
}

