/* ==========================================================================
   TATCO Uganda - Admin dashboard styles (extends style.css)
   ========================================================================== */

.admin-body {
  background: var(--bg-light);
  min-height: 100vh;
}

/* ---------- Login ---------- */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 38px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  border-top: 4px solid var(--gold);
}
.login-logo { height: 60px; margin: 0 auto 18px; }
.login-card h2 { margin-bottom: 6px; }
.login-sub { color: var(--text-mid); font-size: 14px; margin-bottom: 24px; }
.login-card label {
  display: block;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 14px 0 6px;
}
.login-card input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.login-card input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,190,83,.25);
}
.login-card .btn { width: 100%; margin-top: 22px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-mid);
  transition: color .25s ease;
}
.back-link:hover { color: var(--gold-dark); }

/* ---------- Admin header ---------- */
.admin-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 200;
}
.admin-header-inner {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.admin-header .brand img { height: 42px; }
.admin-header-title { flex: 1; }
.admin-header-title h1 { font-size: 19px; margin: 0; }
.admin-user { font-size: 13px; color: var(--text-mid); }

/* ---------- One-page shell: sidebar + content ---------- */
.admin-shell {
  display: flex;
  align-items: flex-start;
  min-height: calc(100vh - 74px);
}
.admin-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--border);
  min-height: calc(100vh - 74px);
  position: sticky;
  top: 74px;
  padding: 20px 0;
}
.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 24px;
  border: none;
  background: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all .2s ease;
}
.admin-sidebar-link i { width: 18px; text-align: center; color: inherit; }
.admin-sidebar-link:hover { background: var(--bg-cream); color: var(--text-dark); }
.admin-sidebar-link.active {
  background: var(--bg-cream);
  color: var(--gold-dark);
  border-left-color: var(--gold);
}
.admin-sidebar-badge {
  margin-left: auto;
  background: var(--bg-light);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.admin-sidebar-link.active .admin-sidebar-badge { background: var(--gold); color: #2b2200; }

.admin-content {
  flex: 1;
  min-width: 0;
  padding: 28px 32px 80px;
}
.admin-section { display: none; }
.admin-section.active { display: block; animation: fadeInUp .35s ease both; }
.admin-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.admin-section-heading h2 { font-size: 22px; margin: 0; }

@media (max-width: 860px) {
  .admin-shell { flex-direction: column; }
  .admin-sidebar {
    width: 100%;
    position: static;
    min-height: auto;
    display: flex;
    overflow-x: auto;
    padding: 8px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .admin-sidebar-link { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .admin-sidebar-link.active { border-left-color: transparent; border-bottom-color: var(--gold); }
  .admin-content { padding: 22px 16px 60px; }
}

/* ---------- Slide-over panel (blog create/edit) ---------- */
.slideover-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 490;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.slideover-backdrop.open { opacity: 1; visibility: visible; }
.slideover {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
  z-index: 1600;
  transition: right .35s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
}
.slideover.open { right: 0; }
.slideover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.slideover-header h3 { margin: 0; font-size: 18px; }
.slideover-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  color: var(--text-mid);
  transition: all .2s ease;
}
.slideover-close:hover { background: #b91c1c; border-color: #b91c1c; color: var(--white); }
.slideover-body { padding: 24px; }
.slideover-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 16px 0 6px;
}
.slideover-body label:first-child { margin-top: 0; }
.slideover-body input[type="text"],
.slideover-body input[type="date"],
.slideover-body textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}
.slideover-body input:focus, .slideover-body textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,190,83,.25);
}
.slideover-body textarea { min-height: 180px; resize: vertical; line-height: 1.6; }
.slideover-actions { display: flex; gap: 12px; margin-top: 22px; }

/* ---------- Post editor (full-page, replaces narrow slide-over for blog posts) ---------- */
.post-editor {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-light);
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
  /* Must stay below TinyMCE's own floating UI (.tox-dialog-wrap: 1100,
     .tox-tinymce-aux dropdowns/menus: 1300) or their dialogs become unclickable. */
  z-index: 500;
  transition: right .35s cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
}
.post-editor.open { right: 0; }
.post-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  flex: 0 0 auto;
}
.post-editor-header-title { display: flex; align-items: center; gap: 12px; }
.post-editor-header-title h3 { margin: 0; font-size: 19px; }
.post-status-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 20px;
}
.post-status-pill.status-draft { background: #fef3c7; color: #92400e; }
.post-status-pill.status-published { background: #dcfce7; color: #166534; }
.post-editor-header-actions { display: flex; align-items: center; gap: 10px; }
.post-editor-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 26px 28px 60px;
}
.post-editor-body form {
  max-width: 1040px;
  margin: 0 auto;
}
.post-editor-fields-row { display: flex; gap: 16px; }
.post-editor-field { flex: 1 1 260px; }
.post-editor-field-narrow { flex: 0 0 190px; }
.post-editor-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 16px 0 6px;
}
.post-editor-body label:first-child { margin-top: 0; }
.post-editor-fields-row label { margin-top: 0; }
.post-editor-body input[type="text"],
.post-editor-body input[type="date"] {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}
.post-editor-body input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,190,83,.25);
}
.post-editor-content-wrap { min-height: 520px; }
.post-editor-statusbar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 4px 0;
  font-size: 12.5px;
  color: var(--text-mid);
}
.post-editor-savestate { margin-left: auto; font-style: italic; }
.post-editor-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.post-editor-actions-right { display: flex; gap: 12px; }

@media (max-width: 720px) {
  .post-editor-fields-row { flex-direction: column; gap: 0; }
  .post-editor-field, .post-editor-field-narrow { flex: 0 0 auto; }
  .post-editor-header { padding: 14px 16px; }
  .post-editor-body { padding: 18px 16px 60px; }
  .post-editor-actions { flex-direction: column-reverse; align-items: stretch; }
  .post-editor-actions-right { flex-direction: column; }
}

/* ---------- Live preview modal ---------- */
.preview-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.preview-modal-backdrop.open { opacity: 1; visibility: visible; }
.preview-modal {
  position: fixed;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 92%;
  max-width: 900px;
  max-height: 92vh;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 601;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.preview-modal.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.preview-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--text-dark);
  flex: 0 0 auto;
}
.preview-modal-body { padding: 32px 24px 48px; overflow-y: auto; }
.preview-modal .blog-post-media img { max-height: 360px; }

/* ---------- Main / stats ---------- */
.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.admin-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
}
.admin-stat-label {
  font-size: 13px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Toolbar ---------- */
.admin-toolbar { margin-bottom: 20px; }
.admin-search {
  position: relative;
  max-width: 380px;
}
.admin-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-mid);
}
.admin-search input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.admin-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,190,83,.25);
}

/* ---------- Table ---------- */
.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.admin-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-mid);
  padding: 16px 18px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr { transition: background-color .2s ease; }
.admin-table tbody tr:hover { background: var(--bg-cream); }
.admin-table .msg-name { font-weight: 600; color: var(--text-dark); }
.admin-table .msg-contact a { color: var(--blue); }
.admin-table .msg-contact a:hover { text-decoration: underline; }
.admin-table .msg-body {
  max-width: 320px;
  white-space: pre-wrap;
  color: var(--text-body);
}
.admin-table .msg-date { white-space: nowrap; color: var(--text-mid); font-size: 13px; }
.admin-table .msg-delete {
  background: none;
  border: 1px solid var(--border);
  color: #b91c1c;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .25s ease;
}
.admin-table .msg-delete:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: var(--white);
  transform: scale(1.08);
}

/* ---------- Empty / loading state ---------- */
.admin-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-mid);
  font-size: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.admin-empty i { display: block; font-size: 28px; margin-bottom: 12px; color: var(--gold-dark); }

@media (max-width: 640px) {
  .admin-header-inner { flex-wrap: wrap; }
  .admin-header-title { order: 3; width: 100%; }
}

/* ---------- Admin sub-nav tabs ---------- */
.admin-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 4px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}
.admin-subnav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.admin-subnav-link:hover { color: var(--text-dark); }
.admin-subnav-link.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

/* ---------- Toast notifications ---------- */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-size: 14px;
  font-weight: 500;
  min-width: 240px;
  max-width: 360px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .3s ease, transform .3s ease;
}
.toast.visible { opacity: 1; transform: translateX(0); }
.toast-success { background: #1e7e34; }
.toast-error { background: #b91c1c; }
.toast-info { background: var(--blue); }
.toast i { font-size: 16px; }

/* ---------- Confirm dialog ---------- */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
  padding: 20px;
}
.confirm-overlay.visible { opacity: 1; }
.confirm-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  max-width: 400px;
  width: 100%;
  transform: scale(.92);
  transition: transform .25s ease;
}
.confirm-overlay.visible .confirm-box { transform: scale(1); }
.confirm-box h3 { margin-bottom: 10px; font-size: 19px; }
.confirm-box p { font-size: 14px; color: var(--text-mid); margin-bottom: 22px; }
.confirm-actions { display: flex; justify-content: flex-end; gap: 12px; }
.btn-danger { background: #b91c1c; color: var(--white); }
.btn-danger:hover { background: #8f1414; }

/* ---------- Pagination ---------- */
.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.admin-pagination button {
  width: 36px; height: 36px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease;
}
.admin-pagination button:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-dark); }
.admin-pagination button.active { background: var(--gold); border-color: var(--gold); color: #2b2200; }
.admin-pagination button:disabled { opacity: .4; cursor: not-allowed; }

/* ---------- Admin toolbar layout ---------- */
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Form (blog/gallery edit) ---------- */
.admin-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 760px;
}
.admin-form-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 18px 0 6px;
}
.admin-form-card label:first-child { margin-top: 0; }
.admin-form-card input[type="text"],
.admin-form-card input[type="date"],
.admin-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.admin-form-card input:focus, .admin-form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,190,83,.25);
}
.admin-form-card textarea { min-height: 220px; resize: vertical; line-height: 1.6; }
.admin-form-hint { font-size: 12px; color: var(--text-mid); margin-top: 4px; }
.admin-form-actions { display: flex; gap: 12px; margin-top: 26px; }

.image-drop {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .25s ease, background-color .25s ease;
  position: relative;
}
.image-drop:hover, .image-drop.dragover { border-color: var(--gold); background: var(--bg-cream); }
.image-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.image-drop i { font-size: 26px; color: var(--gold-dark); margin-bottom: 8px; display: block; }
.image-drop-text { font-size: 13px; color: var(--text-mid); }
.image-preview {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
}
.image-preview.visible { display: block; }
.image-preview img { width: 100%; display: block; }

.upload-progress {
  margin-top: 14px;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-light);
  overflow: hidden;
  display: none;
}
.upload-progress.visible { display: block; }
.upload-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width .2s ease;
}

/* ---------- Blog admin list ---------- */
.admin-table .post-thumb { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; }
.admin-table .post-title-cell { max-width: 320px; }
.admin-table .post-title-cell a { font-weight: 600; color: var(--text-dark); }
.admin-table .post-title-cell a:hover { color: var(--gold-dark); }
.admin-table .row-actions { display: flex; gap: 8px; }
.admin-table .row-actions button, .admin-table .row-actions a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
  color: var(--text-mid);
}
.admin-table .row-actions .edit-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.admin-table .row-actions .delete-btn:hover { background: #b91c1c; border-color: #b91c1c; color: var(--white); }

/* ---------- Gallery admin grid ---------- */
.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.gallery-admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-admin-card .thumb { height: 140px; overflow: hidden; }
.gallery-admin-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-admin-card .body { padding: 14px; }
.gallery-admin-card input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 10px;
}
.gallery-admin-card .actions { display: flex; gap: 8px; }
.gallery-admin-card .actions button {
  flex: 1;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 12px;
  transition: all .2s ease;
}
.gallery-admin-card .save-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.gallery-admin-card .delete-btn:hover { background: #b91c1c; border-color: #b91c1c; color: var(--white); }
.gallery-upload-card {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  cursor: pointer;
  position: relative;
  transition: border-color .25s ease, background-color .25s ease;
  text-align: center;
  color: var(--text-mid);
  font-size: 13px;
}
.gallery-upload-card:hover { border-color: var(--gold); background: var(--bg-cream); }
.gallery-upload-card input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.gallery-upload-card i { font-size: 26px; color: var(--gold-dark); display: block; margin-bottom: 8px; }

/* ---------- Migration tool ---------- */
.migrate-log {
  background: #1b1b1b;
  color: #d4d4d4;
  font-family: monospace;
  font-size: 13px;
  border-radius: var(--radius);
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 20px;
}
.migrate-log .line { padding: 2px 0; }
.migrate-log .line.ok { color: #4ade80; }
.migrate-log .line.err { color: #f87171; }
.migrate-progress-bar-wrap {
  height: 10px;
  border-radius: 5px;
  background: var(--bg-light);
  overflow: hidden;
  margin-top: 16px;
}
.migrate-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width .3s ease;
}
