/* ==========================================================================
   Star Nails — Admin theme (redesign per design_handoff_star_nails_admin)
   Подключается ПОСЛЕ AdminLTE/Bootstrap, чтобы переопределить их визуал.
   Только оформление; поведение (select2/datetimepicker/jQuery) не трогаем.
   ========================================================================== */

:root {
  --pri: #2f6fed;
  --pri-hover: #1d55c9;
  --pri-tint: #eef4ff;
  --pri-ring: rgba(47, 111, 237, .12);
  --txt-strong: #2b3550;
  --txt-body: #3f4a60;
  --txt-muted: #97a0b3;
  --nav-idle: #5b6577;
  --app-bg: #eef1f6;
  --card-bg: #ffffff;
  --hover-bg: #f4f6fb;
  --head-shade: #f7f9fc;
  --bd-chrome: #eaedf3;
  --bd-input: #e4e8f0;
  --bd-row: #eef1f6;
  --ok-text: #34c38f;
  --ok-pill-tx: #1f9d6b;
  --ok-pill-bg: #e7f7f0;
  --dng-text: #e05252;
  --dng-bg: #fff5f5;
  --dng-bd: #f6d5d5;
  --slate: #64748b;
  --sidebar-w: 272px;
  --topbar-h: 70px;
}

/* ----- base ----- */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  background: var(--app-bg) !important;
  color: var(--txt-body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body.skin-blue .wrapper,
body.sidebar-mini .wrapper { background: var(--app-bg); }
* { box-sizing: border-box; }
a { text-decoration: none; }

/* ==========================================================================
   Sidebar
   ========================================================================== */
.adm-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: #fff;
  border-right: 1px solid var(--bd-chrome);
  padding: 22px 18px;
  overflow-y: auto;
  z-index: 1030;
}
.adm-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 2px 6px 18px;
}
.adm-brand .star { color: var(--pri); font-size: 22px; line-height: 1; }
.adm-brand .name { font-size: 22px; font-weight: 600; color: var(--txt-strong); }
.adm-brand .adm-logo { height: 32px; width: auto; max-width: 100%; object-fit: contain; }

.adm-user {
  display: flex; align-items: center; gap: 11px;
  padding: 10px; margin-bottom: 14px;
  border: 1px solid var(--bd-chrome); border-radius: 12px; background: #fff;
}
.adm-user .ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--pri-tint); color: var(--pri);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  flex: 0 0 auto;
}
.adm-user .who { flex: 1; min-width: 0; }
.adm-user .who b { display: block; font-size: 14px; font-weight: 700; color: var(--txt-strong); }
.adm-user .who .st { font-size: 12px; color: var(--ok-text); font-weight: 600; }
.adm-user .who .st::before { content: '●'; margin-right: 4px; font-size: 9px; }
.adm-user .chev { color: var(--txt-muted); }

.adm-nav { list-style: none; margin: 0; padding: 0; }
.adm-nav .sec {
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--txt-muted); font-weight: 700;
  padding: 16px 12px 6px;
}
.adm-nav a {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 14px; margin-bottom: 3px;
  border-radius: 11px;
  color: var(--nav-idle); font-size: 14.5px; font-weight: 500;
  transition: background .15s, color .15s;
}
.adm-nav a .ic { width: 18px; height: 18px; flex: 0 0 auto; opacity: .9; }
.adm-nav a:hover { background: var(--hover-bg); }
.adm-nav a.is-active { background: var(--pri-tint); color: var(--pri); font-weight: 700; }

/* ==========================================================================
   Topbar + main
   ========================================================================== */
.adm-main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.adm-sidebar, .adm-main { transition: transform .2s ease, margin-left .2s ease; }
.adm-collapsed .adm-sidebar { transform: translateX(-100%); }
.adm-collapsed .adm-main { margin-left: 0; }
@media (max-width: 820px) {
  .adm-main { margin-left: 0; }
  .adm-sidebar { transform: translateX(-100%); box-shadow: 0 0 40px rgba(0,0,0,.15); }
  .adm-collapsed .adm-sidebar { transform: translateX(0); }
}
.adm-topbar {
  height: var(--topbar-h);
  background: #fff;
  border-bottom: 1px solid var(--bd-chrome);
  padding: 0 30px;
  display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 1020;
}
.adm-hamburger {
  border: none; background: none; cursor: pointer;
  color: var(--txt-body); padding: 8px; border-radius: 8px; line-height: 0;
}
.adm-hamburger:hover { background: var(--hover-bg); }
.adm-topbar .spacer { flex: 1; }
.adm-bell { position: relative; color: var(--txt-body); }
.adm-bell .badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--pri); color: #fff; border-radius: 9px;
  font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
}
.adm-topuser { display: flex; align-items: center; gap: 9px; color: var(--txt-strong); font-weight: 600; }
.adm-topuser .ava {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--pri-tint); color: var(--pri);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px;
}

.adm-content { padding: 30px; flex: 1; }

.adm-page-header {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: 24px;
}
.adm-page-title { font-size: 26px; font-weight: 700; color: var(--txt-strong); margin: 0; }
.adm-breadcrumb { font-size: 13px; color: var(--txt-muted); }
.adm-breadcrumb a { color: var(--txt-muted); }

/* ==========================================================================
   Cards
   ========================================================================== */
.adm-card {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(40, 60, 110, .05);
  padding: 22px;
}
.adm-card + .adm-card { margin-top: 22px; }
.adm-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 18px;
}
.adm-card-title { font-size: 19px; font-weight: 700; color: var(--txt-strong); margin: 0; }

/* ----- stat grid ----- */
.adm-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-bottom: 22px;
}
.adm-stat {
  background: #fff; border-radius: 16px; padding: 22px;
  box-shadow: 0 6px 20px rgba(40, 60, 110, .05);
  display: flex; align-items: center; gap: 16px;
}
.adm-stat .tile {
  width: 58px; height: 58px; border-radius: 14px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.adm-stat .tile svg { width: 26px; height: 26px; }
.adm-stat .meta { min-width: 0; }
.adm-stat .lbl { font-size: 13px; color: var(--txt-muted); }
.adm-stat .val { font-size: 27px; font-weight: 800; color: var(--txt-strong); white-space: nowrap; line-height: 1.15; }
.adm-stat .delta { font-size: 12px; font-weight: 600; color: var(--ok-text); }

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

/* ==========================================================================
   Tables
   ========================================================================== */
.adm-table-wrap { overflow-x: auto; }
table.adm-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 13.5px; color: var(--txt-body);
}
table.adm-table thead th {
  background: var(--head-shade);
  color: var(--txt-muted);
  font-weight: 700; font-size: 12.5px; text-transform: none;
  text-align: left; padding: 12px 14px; white-space: nowrap;
  border-bottom: 1px solid var(--bd-row);
}
table.adm-table thead th:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
table.adm-table thead th:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px; text-align: right; }
table.adm-table tbody td { padding: 13px 14px; border-bottom: 1px solid var(--bd-row); vertical-align: middle; }
table.adm-table tbody tr:hover { background: var(--hover-bg); }
table.adm-table tbody td:last-child { text-align: right; }
table.adm-table td .strong { font-weight: 700; color: var(--txt-strong); }
table.adm-table td .muted { color: var(--txt-muted); }
table.adm-table td .mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--txt-muted); }

/* image cells */
.adm-thumb-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fbeef0; border: 1px solid #f4dbe1; color: #c2607a;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; text-align: center; overflow: hidden;
}
.adm-thumb-circle img { width: 100% !important; height: 100% !important; object-fit: cover; max-width: none !important; }
.adm-thumb-rect {
  width: 74px; height: 50px; border-radius: 8px; overflow: hidden;
  background: #f0f2f7; display: inline-block;
}
.adm-thumb-rect img { width: 100% !important; height: 100% !important; object-fit: cover; max-width: none !important; }

/* ==========================================================================
   Pills / badges
   ========================================================================== */
.adm-pill {
  display: inline-block; padding: 5px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.adm-pill.is-green { background: var(--ok-pill-bg); color: var(--ok-pill-tx); }
.adm-pill.is-grey  { background: #eef1f6; color: #6b7488; }
.adm-pill.is-blue  { background: var(--pri-tint); color: var(--pri); }
.adm-pill.is-red   { background: var(--dng-bg); color: var(--dng-text); }

/* Bootstrap .label (используется orderstatusShow и др.) -> под пилюли темы */
.adm-content .label {
  display: inline-block; padding: 5px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 600; line-height: 1.4;
}
.adm-content .label-success { background: var(--ok-pill-bg); color: var(--ok-pill-tx); }
.adm-content .label-danger  { background: var(--dng-bg); color: var(--dng-text); }
.adm-content .label-info    { background: var(--pri-tint); color: var(--pri); }
.adm-content .label-warning { background: #fdf0e3; color: #b9752a; }
.adm-content .label-default { background: #eef1f6; color: #6b7488; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.adm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 11px; border: 1.5px solid transparent;
  font-size: 14px; font-weight: 600; cursor: pointer; line-height: 1;
  transition: background .15s, border-color .15s, color .15s;
}
.adm-btn.is-primary { background: var(--pri); color: #fff; box-shadow: 0 8px 18px rgba(47, 111, 237, .28); }
.adm-btn.is-primary:hover { background: var(--pri-hover); }
.adm-btn.is-outline { background: #fff; border-color: var(--bd-input); color: var(--txt-body); }
.adm-btn.is-outline:hover { border-color: var(--pri); color: var(--pri); }
.adm-btn.is-slate { background: #fff; border-color: var(--bd-input); color: var(--slate); }

.adm-icon-btn {
  width: 34px; height: 34px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--bd-input); background: #fff; color: var(--txt-body);
  cursor: pointer; transition: .15s;
}
.adm-icon-btn.is-edit { background: var(--pri-tint); border-color: transparent; color: var(--pri); }
.adm-icon-btn.is-edit:hover { background: #dde8ff; }
.adm-icon-btn.is-del { background: var(--dng-bg); border-color: var(--dng-bd); color: var(--dng-text); }
.adm-icon-btn.is-del:hover { background: #ffe5e5; }
.adm-actions { display: inline-flex; gap: 8px; justify-content: flex-end; }
.adm-actions form { margin: 0; display: inline; }

/* ==========================================================================
   Toolbar / search / inputs / forms
   ========================================================================== */
.adm-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.adm-search {
  flex: 1; position: relative; max-width: 420px;
}
.adm-search input {
  width: 100%; height: 42px; padding: 0 14px 0 40px;
  border: 1.5px solid var(--bd-input); border-radius: 11px; font-size: 14px; color: var(--txt-body);
  background: #fff;
}
.adm-search svg { position: absolute; left: 13px; top: 12px; color: var(--txt-muted); }
.adm-toolbar .spacer { flex: 1; }

.adm-label { display: block; font-size: 13px; font-weight: 600; color: var(--txt-strong); margin-bottom: 7px; }
.adm-label .req { color: var(--dng-text); }
.adm-input, .adm-textarea, .adm-select {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--bd-input); border-radius: 11px;
  font-size: 14px; color: var(--txt-body); background: #fff; font-family: inherit;
}
.adm-textarea { min-height: 104px; resize: vertical; }
.adm-input:focus, .adm-textarea:focus, .adm-select:focus,
.adm-search input:focus {
  outline: none; border-color: var(--pri); box-shadow: 0 0 0 3px var(--pri-ring);
}
.adm-field { margin-bottom: 18px; }
.adm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .adm-form-grid { grid-template-columns: 1fr; gap: 0; } }
.adm-form-foot { border-top: 1px solid var(--bd-row); margin-top: 24px; padding-top: 20px; display: flex; gap: 12px; }
.adm-check { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--txt-body); cursor: pointer; }
.adm-check input { accent-color: var(--pri); width: 16px; height: 16px; }

/* Тема для Bootstrap .form-control (хелперы selectcategory/selectparentservice/servicestatusSelect) */
.adm-content .form-control {
  width: 100%; padding: 11px 13px; height: auto;
  border: 1.5px solid var(--bd-input); border-radius: 11px;
  font-size: 14px; color: var(--txt-body); background: #fff; box-shadow: none;
  font-family: inherit;
}
.adm-content select.form-control { height: 44px; }
.adm-content .form-control:focus { outline: none; border-color: var(--pri); box-shadow: 0 0 0 3px var(--pri-ring); }
.adm-content .form-control-label { display: block; font-size: 13px; font-weight: 600; color: var(--txt-strong); margin-bottom: 7px; }
.adm-content .col-sm-12 { padding-left: 0; padding-right: 0; }

/* подсказка под полем */
.adm-hint { font-size: 12.5px; color: var(--txt-muted); margin: -10px 0 16px; line-height: 1.45; }
.adm-hint b { color: var(--txt-body); font-weight: 600; }

/* Bootstrap .well -> лёгкая подсказка вместо тяжёлого серого блока */
.adm-content .well {
  background: var(--head-shade); border: 1px solid var(--bd-row); box-shadow: none;
  border-radius: 11px; padding: 12px 14px; font-size: 12.5px; color: var(--txt-muted); margin-bottom: 16px;
}

/* select2 -> тема (используется для «Клиент») */
.adm-content .select2-container { width: 100% !important; }
.adm-content .select2-container .select2-selection--single {
  height: 44px; border: 1.5px solid var(--bd-input); border-radius: 11px; background: #fff;
}
.adm-content .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px; padding-left: 13px; color: var(--txt-body); font-size: 14px;
}
.adm-content .select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px; right: 8px; }
.adm-content .select2-container--default .select2-selection--single .select2-selection__clear { line-height: 40px; margin-right: 22px; }
.adm-content .select2-dropdown { border-color: var(--bd-input); border-radius: 11px; }

/* ----- price tiers repeater ----- */
.adm-tiers { margin-top: 6px; }
.adm-tier-row { display: flex; gap: 10px; margin-bottom: 10px; align-items: center; }
.adm-tier-row .name { flex: 2; }
.adm-tier-row .price { flex: 1; }
.adm-tier-row .rm {
  flex: 0 0 auto; width: 38px; height: 40px; border-radius: 10px;
  border: 1.5px solid var(--dng-bd); background: var(--dng-bg); color: var(--dng-text); cursor: pointer;
}
.adm-tier-add { color: var(--pri); font-weight: 600; font-size: 13.5px; background: none; border: none; cursor: pointer; padding: 4px 0; }

/* ==========================================================================
   Login
   ========================================================================== */
.adm-login-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, #eaeef7, #dfe5f2);
  padding: 24px;
}
.adm-login-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.adm-login-brand .star { color: var(--pri); font-size: 26px; }
.adm-login-brand .name { font-size: 24px; font-weight: 700; color: var(--txt-strong); }
.adm-login-card {
  width: 400px; max-width: 100%; background: #fff; border-radius: 18px;
  box-shadow: 0 18px 50px rgba(40, 60, 110, .12); padding: 32px;
}
.adm-login-card h1 { font-size: 18px; font-weight: 700; text-align: center; color: var(--txt-strong); margin: 0 0 22px; }
.adm-login-field { position: relative; margin-bottom: 16px; }
.adm-login-field input {
  width: 100%; height: 46px; padding: 0 44px 0 14px;
  border: 1.5px solid #dfe4ee; border-radius: 10px; font-size: 14px; font-family: inherit;
}
.adm-login-field input:focus { outline: none; border-color: var(--pri); box-shadow: 0 0 0 3px var(--pri-ring); }
.adm-login-field .ic { position: absolute; right: 14px; top: 13px; color: var(--txt-muted); }
.adm-login-row { display: flex; align-items: center; justify-content: space-between; margin: 6px 0 18px; }
.adm-login-links { text-align: center; margin-top: 18px; font-size: 13px; }
.adm-login-links a { color: var(--pri); font-weight: 600; margin: 0 8px; }

/* ==========================================================================
   DataTables (Заказы) — привести контролы к теме
   ========================================================================== */
.adm-dt .dataTables_wrapper { color: var(--txt-body); }
.adm-dt .dataTables_length,
.adm-dt .dataTables_filter,
.adm-dt .dataTables_info,
.adm-dt .dataTables_paginate { margin: 10px 0; font-size: 13px; }
.adm-dt .dataTables_length select,
.adm-dt .dataTables_filter input {
  border: 1.5px solid var(--bd-input); border-radius: 9px; padding: 7px 10px;
  font-family: inherit; font-size: 13px; color: var(--txt-body); background: #fff;
}
.adm-dt .dataTables_filter input:focus,
.adm-dt .dataTables_length select:focus { outline: none; border-color: var(--pri); box-shadow: 0 0 0 3px var(--pri-ring); }
.adm-dt .dataTables_paginate .paginate_button {
  padding: 6px 11px !important; margin: 0 2px; border-radius: 8px !important;
  border: 1px solid var(--bd-input) !important; background: #fff !important; color: var(--txt-body) !important;
}
.adm-dt .dataTables_paginate .paginate_button.current {
  background: var(--pri) !important; border-color: var(--pri) !important; color: #fff !important;
}
.adm-dt .dataTables_paginate .paginate_button:hover {
  background: var(--hover-bg) !important; border-color: var(--pri) !important; color: var(--pri) !important;
}
.adm-dt .dt-buttons .dt-button {
  border: 1.5px solid var(--bd-input) !important; background: #fff !important; color: var(--slate) !important;
  border-radius: 9px !important; padding: 7px 12px !important; margin-right: 6px; font-size: 13px;
  box-shadow: none !important; text-shadow: none !important;
}
.adm-dt .dt-buttons .dt-button:hover { border-color: var(--pri) !important; color: var(--pri) !important; }
.adm-dt table.adm-table.dataTable thead th { border-bottom: 1px solid var(--bd-row); }
.adm-dt table.dataTable.no-footer { border-bottom: none; }
/* статус-пилюли и экшены внутри DataTable уже стилизуются классами .adm-pill/.adm-actions */

/* ==========================================================================
   Legacy AdminLTE-разметка -> новая тема (аналитика + не переписанные CRUD)
   Чтобы экраны на старой верстке (box/table/btn/info-box/content-header)
   автоматически выглядели аккуратно в новом дизайне.
   ========================================================================== */
.adm-content .content { padding: 0; }
.adm-content .content-header { padding: 0 0 20px; margin: 0; }
.adm-content .content-header > h1,
.adm-content .content-header > h1.pull-left { font-size: 26px; font-weight: 700; color: var(--txt-strong); margin: 0; float: none; display: inline-block; }
.adm-content .content-header .breadcrumb { background: none; padding: 4px 0; margin: 6px 0 0; }

.adm-content .box {
  background: #fff; border: none; border-top: none !important; border-radius: 16px;
  box-shadow: 0 6px 20px rgba(40, 60, 110, .05); margin-bottom: 22px;
}
.adm-content .box-header { padding: 18px 22px 0; border: none; }
.adm-content .box-header .box-title { font-size: 19px; font-weight: 700; color: var(--txt-strong); }
.adm-content .box-body { padding: 22px; }

/* info-box (старый дашборд / аналитика) -> стат-карточка */
.adm-content .info-box {
  background: #fff; border-radius: 16px; box-shadow: 0 6px 20px rgba(40, 60, 110, .05);
  min-height: 92px; display: flex; align-items: center; padding: 16px 18px; margin-bottom: 22px;
}
.adm-content .info-box-icon {
  width: 58px; height: 58px; border-radius: 14px; font-size: 24px; line-height: 58px; flex: 0 0 auto;
}
.adm-content .info-box-content { padding: 0 0 0 16px; margin: 0; }
.adm-content .info-box-text { font-size: 13px; color: var(--txt-muted); text-transform: none; white-space: normal; }
.adm-content .info-box-number { font-size: 24px; font-weight: 800; color: var(--txt-strong); }
.adm-content .small-box { border-radius: 16px; box-shadow: 0 6px 20px rgba(40, 60, 110, .05); overflow: hidden; }

/* обычные Bootstrap-таблицы -> тема */
.adm-content table.table { font-size: 13.5px; color: var(--txt-body); border-collapse: separate; border-spacing: 0; }
.adm-content table.table > thead > tr > th {
  background: var(--head-shade); color: var(--txt-muted); font-weight: 700; font-size: 12.5px;
  border: none; border-bottom: 1px solid var(--bd-row); padding: 12px 14px;
}
.adm-content table.table > tbody > tr > td { border: none; border-bottom: 1px solid var(--bd-row); padding: 12px 14px; vertical-align: middle; }
.adm-content table.table > tbody > tr:hover { background: var(--hover-bg); }
.adm-content table.table-bordered > tbody > tr > td,
.adm-content table.table-bordered > thead > tr > th { border: none; border-bottom: 1px solid var(--bd-row); }

/* Bootstrap-кнопки -> тема */
.adm-content .btn { border-radius: 10px; padding: 8px 14px; font-weight: 600; font-size: 13.5px; border: 1.5px solid transparent; }
.adm-content .btn-primary { background: var(--pri); border-color: var(--pri); color: #fff; }
.adm-content .btn-primary:hover { background: var(--pri-hover); border-color: var(--pri-hover); }
.adm-content .btn-default { background: #fff; border-color: var(--bd-input); color: var(--txt-body); }
.adm-content .btn-default:hover { border-color: var(--pri); color: var(--pri); }
.adm-content .btn-success { background: var(--ok-text); border-color: var(--ok-text); color: #fff; }
.adm-content .btn-danger { background: var(--dng-text); border-color: var(--dng-text); color: #fff; }
.adm-content .btn-warning { background: #f5a24b; border-color: #f5a24b; color: #fff; }
.adm-content .btn-xs { padding: 5px 9px; font-size: 12px; border-radius: 8px; }

/* hide legacy AdminLTE chrome when new chrome is active */
body.adm-shell .main-header,
body.adm-shell .main-sidebar,
body.adm-shell .main-footer,
body.adm-shell .left-side { display: none !important; }
body.adm-shell .content-wrapper { margin: 0 !important; min-height: 0 !important; background: transparent !important; }
