/* ═══════════════════════════════════════════
   GPSP — Interface d'administration v2
   Améliorée — Typographie, espacement, polish
═══════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── BASE ── */
.admin-body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.admin-wrap { display: flex; min-height: 100vh; background: #F5F3F2; }

/* ══════════════════════════════════
   SIDEBAR
══════════════════════════════════ */
.sidebar {
  width: 260px;
  background: linear-gradient(180deg, #1C1817 0%, #2B2523 40%, #3A332F 100%);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 200;
  transition: left .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}

/* Sidebar header */
.sb-header {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sb-header img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.sb-title strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}
.sb-title span {
  font-size: 10px;
  color: #B8ADA8;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Sidebar nav */
.sb-nav {
  padding: 12px 0;
  flex: 1;
  overflow-y: auto;
}
.sb-nav::-webkit-scrollbar { width: 4px; }
.sb-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.sb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(216,208,204,.85);
  cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  user-select: none;
  margin: 1px 8px;
  border-radius: 8px;
  border-left: none;
  position: relative;
}
.sb-item i {
  font-size: 15px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  opacity: .7;
  transition: opacity .2s;
}
.sb-item:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.sb-item:hover i { opacity: 1; }
.sb-item.active {
  background: rgba(255,255,255,.13);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 3px 0 0 #D1191C;
}
.sb-item.active i {
  opacity: 1;
  color: #fff;
}

/* Sidebar footer */
.sb-footer {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sb-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #B8ADA8;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all .2s;
  margin-bottom: 6px;
}
.sb-back:hover { background: rgba(255,255,255,.07); color: #fff; }
.sb-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(209,25,28,.15);
  border: 1px solid rgba(209,25,28,.25);
  color: #F1948A;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.sb-logout:hover { background: rgba(209,25,28,.25); color: #fff; border-color: rgba(209,25,28,.4); }

/* Sidebar overlay (mobile) */
.sb-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 199; backdrop-filter: blur(2px); }
.sb-overlay.open { display: block; }

/* ══════════════════════════════════
   ADMIN MAIN AREA
══════════════════════════════════ */
.admin-main {
  margin-left: 260px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.admin-header {
  background: #fff;
  border-bottom: 1px solid #E9E5E3;
  padding: 0 32px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.admin-header h1 {
  font-size: 17px;
  font-weight: 700;
  color: #2B2523;
  letter-spacing: -.2px;
}
.sb-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #78716C;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .2s;
}
.sb-toggle:hover { background: #F1EFEE; }

.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #57534E;
}
.admin-user .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2B2523, #1C1817);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Content area */
.admin-content {
  padding: 28px 32px;
  flex: 1;
}

/* ══════════════════════════════════
   DASHBOARD CARDS
══════════════════════════════════ */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.dash-grid-3 { grid-template-columns: repeat(3, 1fr); }
.dash-card {
  background: #fff;
  border: 1px solid #E9E5E3;
  border-radius: 14px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease;
}
.dash-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.dash-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-color, #2B2523);
  border-radius: 14px 14px 0 0;
}
.dash-card .dc-icon {
  position: absolute;
  right: 20px;
  top: 22px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--card-bg, #F3F1F0);
  color: var(--card-color, #2B2523);
}
.dash-card .dc-val {
  font-size: 30px;
  font-weight: 800;
  color: #2B2523;
  margin-bottom: 4px;
  letter-spacing: -.5px;
  line-height: 1;
}
.dash-card .dc-lbl {
  font-size: 12px;
  font-weight: 500;
  color: #78716C;
  margin-top: 6px;
}
.dash-card .dc-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 10px;
  padding: 3px 8px;
  border-radius: 20px;
}
.trend-up { color: #16A34A; background: #F0FDF4; }
.trend-dn { color: #DC2626; background: #FEF2F2; }

/* ══════════════════════════════════
   CHARTS
══════════════════════════════════ */
.chart-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.chart-widget {
  background: #fff;
  border: 1px solid #E9E5E3;
  border-radius: 14px;
  padding: 24px;
}
.chart-widget h4 {
  font-size: 14px;
  font-weight: 600;
  color: #2B2523;
  margin-bottom: 18px;
}
.chart-canvas { height: 220px; }

/* ══════════════════════════════════
   TABLE CARDS
══════════════════════════════════ */
.table-card {
  background: #fff;
  border: 1px solid #E9E5E3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
.table-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid #E9E5E3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: #FAFAF9;
}
.table-card-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #2B2523;
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-card-header h3 i {
  color: #2B2523;
  font-size: 15px;
}
.table-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.search-input {
  border: 1px solid #E7E5E4;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  width: 220px;
  transition: all .2s;
  background: #fff;
  font-family: inherit;
  color: #2B2523;
}
.search-input::placeholder { color: #A8A29E; }
.search-input:focus { border-color: #2B2523; box-shadow: 0 0 0 3px rgba(43,37,35,.08); outline: none; }
.search-form { position: relative; display: inline-flex; align-items: center; }
.search-form i { position: absolute; left: 12px; color: #A8A29E; font-size: 12px; pointer-events: none; }
.search-form .search-input { padding-left: 32px; }
.search-form .search-clear { position: absolute; right: 8px; color: #A8A29E; font-size: 12px; background: none; padding: 4px; border-radius: 50%; transition: background .15s, color .15s; }
.search-form .search-clear:hover { background: #F5F4F3; color: #2B2523; }

/* ── PAGINATION ── */
.admin-pagination { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 16px 24px; border-top: 1px solid #E9E5E3; }
.admin-pagination .pg-info { font-size: 12px; color: #78716C; }
.admin-pagination .pg-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.admin-pagination .pg-link {
  min-width: 30px; height: 30px; padding: 0 8px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #E7E5E4; border-radius: 6px; font-size: 12px; color: #2B2523; background: #fff; transition: all .15s;
}
.admin-pagination .pg-link:hover:not(.disabled):not(.active) { border-color: #2B2523; background: #FAFAF9; }
.admin-pagination .pg-link.active { background: #2B2523; border-color: #2B2523; color: #fff; font-weight: 700; }
.admin-pagination .pg-link.disabled { color: #D6D3D1; cursor: default; }
.admin-pagination .pg-dots { color: #A8A29E; font-size: 12px; padding: 0 4px; }

.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: #FAFAF9;
  padding: 12px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #78716C;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-bottom: 1px solid #E9E5E3;
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 20px;
  font-size: 13px;
  color: #44403C;
  border-bottom: 1px solid #F1EFEE;
  vertical-align: middle;
  line-height: 1.5;
}
.admin-table td strong { color: #2B2523; font-weight: 600; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAFAF9; }

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2px;
  white-space: nowrap;
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.tag-red   { background: #FEF2F2; color: #DC2626; }
.tag-blue  { background: #F3F1F0; color: #2B2523; }
.tag-green { background: #F0FDF4; color: #16A34A; }
.tag-gray  { background: #F1EFEE; color: #78716C; }

.badge-pub   { background: #F0FDF4; color: #16A34A; }
.badge-draft { background: #FFFBEB; color: #D97706; }
.badge-arch  { background: #F1EFEE; color: #78716C; }
.badge-act   { background: #F3F1F0; color: #2B2523; }
.badge-urgent { background: #FEF2F2; color: #DC2626; }
.badge-urgent::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #DC2626; animation: badgeUrgentPulse 1.4s ease-in-out infinite; }
@keyframes badgeUrgentPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.sb-badge { margin-left: auto; background: #DC2626; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px; min-width: 18px; text-align: center; }

/* Row action buttons */
.row-actions { display: flex; gap: 6px; }
.ra-btn {
  background: #fff;
  border: 1px solid #E7E5E4;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 12px;
  color: #78716C;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ra-btn:hover { border-color: #2B2523; color: #2B2523; background: #F3F1F0; transform: translateY(-1px); }
.ra-btn.danger:hover { border-color: #DC2626; color: #DC2626; background: #FEF2F2; }

/* User cell */
.user-cell { display: flex; align-items: center; gap: 10px; }
.user-ava {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2B2523, #1C1817);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.role-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}
.role-admin  { background: #EDE9FE; color: #7C3AED; }
.role-editor { background: #F3F1F0; color: #2B2523; }
.role-viewer { background: #F1EFEE; color: #78716C; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.hbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2B2523;
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  font-family: inherit;
  white-space: nowrap;
}
.hbtn:hover { background: #1C1817; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(43,37,35,.2); }
.hbtn:active { transform: translateY(0); }
.hbtn.outline {
  background: #fff;
  color: #57534E;
  border: 1px solid #E7E5E4;
}
.hbtn.outline:hover { border-color: #2B2523; color: #2B2523; background: #F3F1F0; box-shadow: none; }
.hbtn.danger { background: #DC2626; }
.hbtn.danger:hover { background: #B91C1C; box-shadow: 0 4px 12px rgba(220,38,38,.2); }

/* ══════════════════════════════════
   FORMS & MODALS
══════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }
.form-group { margin-bottom: 4px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  border: 1px solid #E7E5E4;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #2B2523;
  transition: all .2s;
  background: #fff;
  font-family: inherit;
}
.form-control::placeholder { color: #A8A29E; }
.form-control:focus {
  border-color: #2B2523;
  box-shadow: 0 0 0 3px rgba(43,37,35,.08);
  outline: none;
}
textarea.form-control { height: 110px; resize: vertical; line-height: 1.6; }
select.form-control { appearance: auto; }

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 22px;
  background: #FAFAF9;
  border-top: 1px solid #E9E5E3;
  border-radius: 0 0 12px 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.5);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 16px;
  width: 580px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  animation: modalIn .25s cubic-bezier(.4,0,.2,1);
}
.modal-lg { width: 960px; }
.table-scroll { overflow-x: auto; }
.mini-table { width: 100%; border-collapse: collapse; white-space: nowrap; }
.mini-table th { background: #F5F4F3; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: #57534E; padding: 8px 10px; text-align: left; }
.mini-table td { padding: 6px 8px; border-bottom: 1px solid #F1EFEE; }
.mini-table input.form-control { padding: 6px 8px; font-size: 12px; width: 72px; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #E9E5E3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
  border-radius: 16px 16px 0 0;
}
.modal-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2B2523;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-header h3 i { color: #2B2523; }
.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #A8A29E;
  cursor: pointer;
  line-height: 1;
  transition: all .2s;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: #2B2523; background: #F1EFEE; }
.modal-body { padding: 24px; }

/* ══════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #2B2523;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 16px; color: #4ADE80; }

/* ══════════════════════════════════
   ALERT BOXES (inline)
══════════════════════════════════ */
.alert-success {
  background: #F0FDF4;
  color: #166534;
  padding: 14px 22px;
  border-radius: 10px;
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #BBF7D0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert-success::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #16A34A; }
.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  padding: 14px 22px;
  border-radius: 10px;
  margin: 0 0 20px;
  font-size: 13px;
  border: 1px solid #FECACA;
}

/* ══════════════════════════════════
   LOGIN PAGE
══════════════════════════════════ */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #2B2523 0%, #2B2523 50%, #D1191C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  width: 420px;
  max-width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: modalIn .4s cubic-bezier(.4,0,.2,1);
}
.login-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.login-logo img { width: 52px; height: 52px; border-radius: 14px; border: 2px solid #F3F1F0; }
.login-logo-txt strong { display: block; font-size: 14px; font-weight: 700; color: #1C1817; }
.login-logo-txt span { font-size: 11px; color: #A8A29E; font-weight: 500; }
.login-card h2 { font-size: 22px; font-weight: 800; color: #2B2523; margin-bottom: 6px; letter-spacing: -.3px; }
.login-card > p { font-size: 13px; color: #78716C; margin-bottom: 28px; line-height: 1.5; }
.login-label { display: block; font-size: 12px; font-weight: 600; color: #374151; margin-bottom: 6px; margin-top: 16px; }
.login-input {
  width: 100%;
  border: 1px solid #E7E5E4;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #2B2523;
  transition: all .2s;
  font-family: inherit;
}
.login-input::placeholder { color: #A8A29E; }
.login-input:focus { border-color: #2B2523; box-shadow: 0 0 0 3px rgba(43,37,35,.1); outline: none; }
.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #2B2523, #1C1817);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: all .2s;
  font-family: inherit;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,37,35,.3); }
.login-btn:active { transform: translateY(0); }
.login-error {
  background: #FEF2F2;
  color: #991B1B;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  margin-bottom: 14px;
  display: none;
  border: 1px solid #FECACA;
  font-weight: 500;
}
.login-error.show { display: block; }
.back-link { display: block; text-align: center; margin-top: 22px; font-size: 12px; color: #2B2523; font-weight: 500; }
.back-link:hover { text-decoration: underline; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .sidebar { left: -280px; width: 280px; }
  .sidebar.open { left: 0; }
  .admin-main { margin-left: 0; }
  .sb-toggle { display: block; }
  .dash-grid, .dash-grid-3 { grid-template-columns: 1fr 1fr; }
  .chart-row { grid-template-columns: 1fr; }
  .admin-content { padding: 20px 16px; }
  .admin-header { padding: 0 16px; }
}
@media (max-width: 600px) {
  .dash-grid, .dash-grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .modal { border-radius: 12px; }
  .login-card { padding: 28px 22px; border-radius: 14px; }
  .admin-content { padding: 16px 12px; }
  .table-card-header { padding: 14px 16px; }
  .admin-table th, .admin-table td { padding: 10px 14px; }
}
@media print {
  .sidebar, .admin-header, .sb-overlay, .toast { display: none !important; }
  .admin-main { margin-left: 0; }
}