/* =========================================================
   Site Colors:
   #e03e52 - pink
   #c8ced2 - grey
   #f07b27 - orange
   #786758 - brown
   ========================================================= */

/* =============== Base / Page =============== */
html {
  height: 100%;
  width: 100%;
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-image: url(../images/nav-back1.gif);
  background-repeat: repeat-x;
  /*background: linear-gradient(180deg, #f7f7f7, #e6e6e6);*/

  border: 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 18px;
  color: #474747;

  /* ✅ NEW: App layout (header + scrollable middle + footer) */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden; /* ✅ stop full page scroll */
}

/* =============== Header / Footer =============== */
/* NOTE: Your files had two different header designs.
   This keeps the more complete "site header" style.
   If you still need the small header from file #1, tell me and I’ll add a separate class. */
header {
  height: 140px;
  width: 1100px;
  margin: 0;
  padding: 0;
  text-align: left;
  background: #e03e52;
  color: #FFFFFF;
}

header h1 {
  padding: 1em;
  margin: 0;
}

/* ✅ NEW: footer is no longer "clear: both" driven, flex handles it */
footer {
  margin: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  color: inherit;

  flex: 0 0 auto; /* ✅ footer stays bottom */
}

/* =============== Layout Containers =============== */

/* ✅ NEW: #page becomes the scrollable middle zone container */
#page {
  flex: 1 1 auto;
  min-height: 0;     /* ✅ critical for internal scroll */
  overflow: hidden;  /* ✅ contain scrollbars inside */
  background: #ffffff;
}

/* ✅ NEW: main middle area split (sidebar + content) */
.app-shell {
  height: 100%;
  display: flex;
  min-height: 0;     /* ✅ critical */
}

/* ✅ NEW: sidebar scrolls inside the body area */
.app-sidebar {
  width: 300px;              /* matches your old left-content width */
  overflow-y: auto;
  min-height: 0;
  padding: 0;
}

/* ✅ NEW: right content scrolls inside the body area */
.app-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 16px;
  background: #ffffff;
}

/* IMPORTANT:
   If you still have other pages using #main layout, keep it,
   but do NOT force it to height:100% scrolling. */
#main {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

/* Old float based layout (kept, but not used by inventory.php anymore) */
.left-content {
  width: 300px;
  float: left;
}

.right-content {
  width: 980px;
  float: left;
  margin-left: 20px;
}

/* =============== Content Area =============== */
#content {
  width: 1300px;
  min-height: 800px;
  padding: 0 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

/* =============== Navigation / Sidebar =============== */
/* =========================
   Modern Tutoring Sidebar
   Yellow + Gray Theme
   ========================= */

navigation.tutor-nav{
  background: #c8ced2;          /* FULL gray background */
  border: 1px solid #aeb4b8;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  overflow: hidden;

  /* ✅ NEW: fill sidebar height so internal list can scroll */
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

/* ===== TOP BAR ===== */
navigation.tutor-nav .tutor-nav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px;
  background: linear-gradient(180deg, #898888, #e2e2e2);
  border-bottom: 1px solid #cfcfcf;

  flex: 0 0 auto;
}

navigation.tutor-nav .tutor-nav__title{
  font-weight: 800;
  color: #333;
}

navigation.tutor-nav .tutor-nav__toggle{
  border: 1px solid #bdbdbd;
  background: #a29e9e;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

/* Hint */
navigation.tutor-nav .tutor-nav__hint{
  padding: 10px 12px;
  font-size: 13px;
  color: #555;
  background: #d1cfcf;
  border-bottom: 1px solid #d6d6d6;

  flex: 0 0 auto;
}

/* ===== CHAPTERS (GRAY NAV BAR) ===== */
navigation.tutor-nav ul.chapters{
  list-style: none;
  margin: 0;
  padding: 12px;

  /* ✅ NEW: THIS is what scrolls inside sidebar */
  overflow-y: auto;
  min-height: 0;
  flex: 1 1 auto;
}

navigation.tutor-nav ul.chapters > li{
  margin-bottom: 10px;
}

navigation.tutor-nav a.chap-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 11px 14px;
  border-radius: 14px;
  text-decoration:none;
  background: #e6e6e6;          /* gray nav */
  color: #222;
  border: 1px solid #c9c9c9;
  font-weight: 600;
  transition: background .15s ease, transform .1s ease;
}

navigation.tutor-nav a.chap-link:hover{
  background: #dddddd;
  transform: translateY(-1px);
}

/* Selected chapter */
navigation.tutor-nav ul.chapters > li.selected > a.chap-link{
  background: linear-gradient(180deg, #ffe680, #ffd633);
  border-color: #d6ab00;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(245,196,0,.35);
}

/* Chapter icon */
navigation.tutor-nav .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999;
}

navigation.tutor-nav ul.chapters > li.selected .dot{
  background: #c99700;
}

/* ===== SECTIONS (YELLOW TINT) ===== */
navigation.tutor-nav ul.sections{
  list-style: none;
  margin-top: 8px;
  padding: 10px 12px;
  background: #fff9dd;              /* light yellow */
  border-left: 4px solid #f5c400;
  border-radius: 12px;
}

navigation.tutor-nav a.sec-link{
  display:block;
  padding: 9px 12px;
  margin: 6px 0;
  border-radius: 10px;
  text-decoration:none;
  background: #fff4b8;              /* section yellow */
  color: #333;
  border: 1px solid #efd27a;
  font-size: 14px;
}

navigation.tutor-nav a.sec-link:hover{
  background: #ffef9e;
}

/* Selected section */
navigation.tutor-nav ul.sections li.selected > a.sec-link{
  background: #f5c400;
  color: #222;
  font-weight: 800;
  border-color: #d6ab00;
}

/* ===== COLLAPSED MODE ===== */
navigation.tutor-nav.is-collapsed .tutor-nav__hint,
navigation.tutor-nav.is-collapsed ul.sections{
  display: none;
}

/* =============== Global Links =============== */
a {
  color: #E03E52;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =============== Top Nav Bar =============== */
.nav-bar {
  height: 65px;
  width: 100%;
  margin: auto;

  /* ✅ NEW: top nav should not scroll; body flex already ensures this */
  flex: 0 0 auto;
}

.nav-bar ul {
  margin: 0px;
  padding: 0 0 0 45px;
  list-style-type: none;
}

.nav-bar ul li {
  height: 42px;
  width: auto;
  float: left;
  text-transform: uppercase;
  background-image: url(../images/list-left1.gif);
  background-repeat: no-repeat;
  display: inline;
  padding: 23px 12px 0 12px;
}

.nav-bar ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #595959;
  background-image: url(../images/arrow-list1.gif);
  background-repeat: no-repeat;
  float: left;
  padding-left: 20px;
  text-decoration: none;
  font-weight: bold;
  background-position: 6px;
}

.nav-bar ul li a:hover {
  text-decoration: underline;
}

.nav-bar ul li a.current {
  text-decoration: underline;
}

/* If you use header h1 links inside .nav-bar */
.nav-bar header h1 a {
  color: #474747;
}

.nav-bar header h1 a:hover {
  color: #0ea5e9;
}

.nav-bar header h1 a:visited {
  color: #474747;
}

/* Staff header bar */
.nav-barstaff {
  height: 65px;
  width: 1300px;
  margin: auto;
}

.nav-barstaff h1 {
  all: unset;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #666666;
  float: left;
  padding-left: 20px;
  margin-top: 20px;
  font-weight: bold;
}

/* =============== Page Typography =============== */
#page h1 {
  font-size: 16px;
  color: #000000;
  line-height: normal;
}

#page h2 {
  font-size: 14px;
  color: #000000;
  line-height: normal;
}

#page h3 {
  font-size: 14px;
  color: #e03e52;
}

/* FIXED: missing semicolon between font-family and font-size */
#page p {
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed",
               Helvetica, Arial, "sans-serif";
  font-size: 12px;
  color: #000000;
  padding: 0px;
  line-height: normal;
}

h3 {
  color: #c70640;
  font-size: 14px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  padding: 0px;
  margin: 8px 0;
}

h5 {
  font: 15px Tahoma, Arial, Helvetica, sans-serif;
  color: #FF6704;
  font-weight: bold;
  padding: 0 0 5px 0;
  border-bottom: 1px dotted #FF6704;
  margin: 0 0 10px 0;
}

h6 {
  font: 18px Tahoma, Arial, Helvetica, sans-serif;
  color: #FF6704;
  font-weight: bold;
  padding: 0 0 5px 0;
  margin: 0 0 10px 0;
}

span {
  color: #666666;
  padding: 0px;
  margin: 0px;
}

/* =============== Page Header Images =============== */
#page1-header {
  float: left;
  background-image: url(../images/h1-bottom.gif);
  background-repeat: no-repeat;
  width: 506px;
  padding-bottom: 5px;
  background-position: bottom;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 35px;
  color: #777777;
  margin: 0 0 20px 0;
  font-weight: normal;
  line-height: normal;
}

#page1-header1 {
  margin: 0px;
  float: left;
  background-image: url(../images/h2-bt.gif);
  background-repeat: no-repeat;
  width: 259px;
  padding-bottom: 5px;
  background-position: bottom;
  padding: 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 35px;
  color: #777777;
  font-weight: normal;
  line-height: normal;
}

/* =============== Background / Branding Blocks =============== */
#body-back {
  height: auto;
  width: 1300px;
  margin: auto;
  background-image: url(../images/body-back6.jpg);
  background-repeat: no-repeat;
}

#body-back1 {
  height: auto;
  width: 1300px;
  margin: 300px 0;
  background-repeat: no-repeat;
}

#header {
  height: 193px;
  width: 1300px;
  margin: auto;
}

.logo {
  height: 126px;
  width: 392px;
  float: left;
  font-family: Arial, Helvetica, sans-serif;
  color: #666666;
  font-size: 11px;
  padding-left: 86px;
  padding-top: 67px;
  text-align: right;
}

.logo-right {
  height: 118px;
  width: 520px;
  float: left;
  padding-top: 75px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #8F8F8F;
  line-height: 34px;
}

.logo-right p {
  padding: 0px;
  margin: 0 0 0 40px;
}

/* =============== Body Part Blocks =============== */
#body-part {
  height: auto;
  width: 100%;
  margin: auto;
}

#body-part a {
  color: #FF6704;
}

#body-part p {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #464646;
  padding: 0px;
  line-height: 22px;
  margin: 5px 0 15px 0;
}

#body-part-left {
  height: auto;
  width: 520px;
  float: left;
  padding-top: 52px;
  padding-left: 86px;
  padding-right: 81px;
}

#body-part-right {
  height: auto;
  width: 268px;
  float: left;
  padding-top: 160px;
  padding-right: 45px;
}

.globe {
  height: 131px;
  width: 123px;
  float: left;
  background-image: url(../images/globe.gif);
  background-repeat: no-repeat;
  margin-right: 10px;
  margin-bottom: 10px;
}

.latest-work {
  height: auto;
  width: 268px;
  float: left;
  background-image: url(../images/latest-work.gif);
  background-repeat: no-repeat;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 130px;
}

/* =============== Bottom Strip =============== */
.bottom-strip {
  height: auto;                 /* ✅ allow footer to size naturally */
  width: 100%;
  margin: 0;
  background-image: url(../images/bottom-strip2.gif);
  background-repeat: repeat-x;
  padding: 12px 0;

  /* ✅ footer sits at bottom (flex) */
  flex: 0 0 auto;
}

.bottom-strip p {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #FFFFFF;
  margin: 0px auto;
  width: 100%;
  max-width: 1300px;
  padding: 0 16px;
  text-align: right;
}

.bottom-strip p b {
  float: left;
}

.bottom-strip p a {
  color: #FFFFFF;
}

/* =============== Utilities =============== */
.clear { clear: both; }

.staffarea {
  all: unset;
  margin: 300px 0 0 0;
  padding: 5px;
  font-size: 30px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
}

/* =============== Tables / Lists =============== */
table { border-collapse: collapse; vertical-align: top; }
table.list { width: 100%; }
table.list tr td { border: 1px solid #474747; }
table.list tr th { border: 1px solid #474747; background: #474747; color: white; text-align: left; }
/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.table th {
  padding: 10px;
  background: #f0f0f0;
  border-bottom: 2px solid var(--line);
  text-align: left;
  color: #333;
}

.table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: #ffffff;
}
/* Make checkbox not stretch to 100% */
.chk {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  accent-color: var(--accent);
}

dl { clear: both; overflow: hidden; margin: 0.5em 0; }
dt { float: left; font-weight: bold; width: 125px; }
dd { float: left; margin-left: 1em; }
.errors ul li { color: #c70640; }

/* =============== Inner Pages =============== */
.aboutus-img { float: right; border: 4px solid #FF6704; margin: 0 0 10px 20px; }
.aboutcolumnzone { padding: 20px 0 16px 0; }
.aboutcolumn1 { width: 48%; float: left; margin: 0 0 10px 0; }
.aboutcolumn2 { width: 48%; float: right; margin: 0 0 10px 0; }
.abouticon { float: left; margin: 0 20px 0 0; }
.insidereadmore { padding: 10px 0; }
input.button { color: #fff; background: #333; font: bold 11px Arial, Helvetica, sans-serif; text-decoration: none; padding: 10px 10px; margin: 0 5px 5px 0; border: 1px solid #FF6704; }
input.button:hover { cursor: pointer; color: #fff; background: #999; }
.project-img { float: right; margin-left: 20px; border: 6px solid #FF6704; }
.whiteheading { font: 30px "Myriad Pro", Arial; color: #CBD76B; font-weight: 100; padding: 0; margin: 25px 0 20px 0; }
.ourprojectrow { margin-bottom: 20px; border-bottom: 1px dotted #FF6704; padding-bottom: 10px; padding-right: 20px; }
.servicecolumnzone { padding: 20px 0 16px 0; }
.servicecolumn1 { width: 48%; float: left; margin: 0 0 10px 0; }
.servicecolumn2 { width: 48%; float: right; margin: 0 0 10px 0; }
.blog-posted-row { padding: 3px; }

/* =============== Profile Popover =============== */
.profile-menu { position: relative; }

.popover {
  position: absolute;
  top: 48px;
  right: 0;
  width: 190px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #374151;
  box-shadow: 0 10px 25px rgba(188, 123, 2, 0.15);
  display: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.profile-menu.open .popover {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.popover::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 16px;
  width: 14px;
  height: 14px;
  background: #1f2933;
  border-left: 1px solid #374151;
  border-top: 1px solid #374151;
  transform: rotate(45deg);
}

.popover a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: #374151;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.popover a:hover {
  background: #374151;
  color: #ffffff;
}

.popover .divider {
  height: 1px;
  background: #f3f4f6;
  margin: 6px 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover { background: #f3f3f3; }
.dropdown-menu.show { display: block; }

/* =========================================================
   Form Styles (from signupform_style.css)
   ========================================================= */
.form-container {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  width: 550px;
}

h2 {
  text-align: center;
  margin: 0 0 20px;
  color: #333;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-group label {
  width: 150px;
  font-weight: bold;
  color: #444;
}

.form-group .note {
  width: 100%;
  margin-left: 150px;
  font-size: 12px;
  color: #888;
  margin-top: -10px;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #007bff;
  box-shadow: 0 0 4px rgba(0,123,255,0.3);
  outline: none;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fafafa;
  margin-top: 10px;
}

.captcha input[type="checkbox"] {
  transform: scale(1.2);
  cursor: pointer;
}

.captcha span {
  font-size: 14px;
  color: #333;
  user-select: none;
}

button {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #7a6855;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #5e6265d8;
}

.success {
  background: #e6ffed;
  border: 1px solid #b3e6c9;
  padding: 15px;
  margin-bottom: 16px;
  border-radius: 6px;
  color: #2e7d32;
  font-size: 14px;
}

.error,
.success-message {
  background: #ffecec;
  border: 1px solid #f5c2c7;
  padding: 12px 15px;
  margin-bottom: 16px;
  border-radius: 6px;
  color: #b02a37;
  font-size: 14px;
}

.error ul { margin: 6px 0 0 16px; }

.login-warning {
  max-width: 520px;
  margin: 30px auto;
  padding: 16px 20px;
  background: #fff5f5;
  border-left: 6px solid #d93025;
  color: #b00020;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

.login-warning strong { font-weight: 700; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* second part--------------------- */

/* ===== Dashboard Yellow/Gray Theme (SCOPED) ===== */
.dash-wrap {
  --bg:#f3f3f3;
  --card:#ffffff;
  --text:#2e2e2e;
  --muted:#6f6f6f;
  --line:#d0d0d0;
  --accent:#f5c400;
  --danger:#d9534f;
  --ok:#5cb85c;

  background: linear-gradient(180deg, #f7f7f7, #e6e6e6);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 16px;
}

.dash-wrap * { box-sizing: border-box; }

.dash-wrap .container { max-width: 980px; margin: 0 auto; padding: 0 16px; }

.dash-wrap .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.dash-wrap .header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.dash-wrap h1, .dash-wrap h2 { margin: 0 0 10px; color: #333; }
.dash-wrap .small { color: var(--muted); font-size: 14px; }

.dash-wrap .grid { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 720px){ .dash-wrap .grid { grid-template-columns: 1fr; } }

.dash-wrap label { display:block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }

.dash-wrap input, .dash-wrap select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--text);
  outline: none;
}

.dash-wrap input:focus, .dash-wrap select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,196,0,.25);
}

.dash-wrap .actions { display:flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

.dash-wrap .btn {
  display:inline-block;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #eeeeee;
  color: #333;
  cursor:pointer;
  text-decoration:none;
  font-weight: 600;
}
.dash-wrap .btn:hover { filter: brightness(0.97); }

.dash-wrap .btn.primary { background: #f5c400; border-color: #d6ab00; color: #222; }
.dash-wrap .btn.danger  { background: #f2dede; border-color: #d9534f; color: #a94442; }

.dash-wrap .hr { height:1px; background: var(--line); margin: 16px 0; }

.dash-wrap .alert {
  padding: 10px 12px;
  border-radius: 10px;
  margin: 10px 0;
  border:1px solid var(--line);
  background: #f9f9f9;
}
.dash-wrap .alert.error { border-color: #d9534f; background: #fbeaea; }
.dash-wrap .alert.ok    { border-color: #5cb85c; background: #edf7ed; }

.dash-wrap .table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.dash-wrap .table th { padding: 10px; background: #f0f0f0; border-bottom: 2px solid var(--line); text-align:left; color:#333; }
.dash-wrap .table td { padding: 10px; border-bottom: 1px solid var(--line); text-align:left; background:#ffffff; }

.dash-wrap .badge {
  display:inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  background:#eeeeee;
}
.dash-wrap .badge.primary { color: #222; border-color: #d6ab00; background: #ffe680; }

.dash-wrap .kv { display:grid; grid-template-columns: 140px 1fr; gap:10px; margin-top:8px; }
.dash-wrap .kv div:nth-child(odd){ color: var(--muted); }

.dash-wrap .checkrow { display:flex; gap:10px; align-items:center; margin-top:8px; }


