@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 800;
  font-display: block;
  src: url("../fonts/outfit/outfit-latin-ext-variable.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 800;
  font-display: block;
  src: url("../fonts/outfit/outfit-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bs-font-sans-serif: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --kt-font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shelfops-brand-blue: #3b82f6;
  --shelfops-brand-blue-rgb: 59, 130, 246;
  --shelfops-brand-blue-active: #2563eb;
  --shelfops-brand-blue-light: #eff6ff;
  --shelfops-brand-blue-link: #bfdbfe;
  --kt-primary: var(--shelfops-brand-blue);
  --kt-primary-active: var(--shelfops-brand-blue-active);
  --kt-primary-light: var(--shelfops-brand-blue-light);
  --kt-primary-inverse: #ffffff;
  --kt-text-dark: #18181b;
  --kt-primary-rgb: var(--shelfops-brand-blue-rgb);
  --bs-primary: var(--shelfops-brand-blue);
  --bs-primary-rgb: var(--shelfops-brand-blue-rgb);
  --shelfops-canvas: #f9fafb;
  --shelfops-surface: #ffffff;
  --shelfops-border: #e5e7eb;
  --shelfops-border-soft: rgba(226, 232, 240, 0.72);
  --shelfops-muted: #64748b;
  --shelfops-shadow: 0 16px 34px -26px rgba(15, 23, 42, 0.38);
}

.shelfops-skeleton {
  --shelfops-skeleton-width: 100%;
  --shelfops-skeleton-height: 1rem;
  --shelfops-skeleton-radius: 0.475rem;
  display: inline-block;
  width: var(--shelfops-skeleton-width);
  max-width: 100%;
  height: var(--shelfops-skeleton-height);
  min-height: var(--shelfops-skeleton-height);
  border-radius: var(--shelfops-skeleton-radius);
  background: linear-gradient(
    90deg,
    rgba(226, 232, 240, 0.72) 25%,
    rgba(248, 250, 252, 0.96) 37%,
    rgba(226, 232, 240, 0.72) 63%
  );
  background-size: 400% 100%;
  color: transparent;
  pointer-events: none;
  user-select: none;
  vertical-align: middle;
  animation: shelfops-skeleton-shimmer 1.4s ease infinite;
}

.shelfops-skeleton-text {
  --shelfops-skeleton-height: 0.875rem;
  --shelfops-skeleton-radius: 999px;
}

.shelfops-skeleton-stack,
.shelfops-skeleton-card,
.shelfops-skeleton-form,
.shelfops-skeleton-table {
  display: flex;
  flex-direction: column;
  gap: var(--shelfops-skeleton-gap, 0.65rem);
  width: var(--shelfops-skeleton-container-width, 100%);
  max-width: 100%;
}

.shelfops-skeleton-row,
.shelfops-skeleton-avatar-row {
  display: flex;
  align-items: center;
  gap: var(--shelfops-skeleton-gap, 0.85rem);
  width: var(--shelfops-skeleton-container-width, 100%);
  max-width: 100%;
}

.shelfops-skeleton-row > .shelfops-skeleton-stack,
.shelfops-skeleton-avatar-row > .shelfops-skeleton-stack {
  flex: 1 1 auto;
  min-width: 0;
}

.shelfops-skeleton-avatar {
  --shelfops-skeleton-size: 3rem;
  --shelfops-skeleton-width: var(--shelfops-skeleton-size);
  --shelfops-skeleton-height: var(--shelfops-skeleton-size);
  --shelfops-skeleton-radius: 999px;
  flex: 0 0 var(--shelfops-skeleton-size);
}

.shelfops-skeleton-card-media {
  --shelfops-skeleton-height: auto;
  display: block;
  aspect-ratio: var(--shelfops-skeleton-aspect-ratio, 16 / 9);
}

.shelfops-skeleton-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.shelfops-skeleton-table-row {
  display: grid;
  grid-template-columns: repeat(var(--shelfops-skeleton-columns, 4), minmax(0, 1fr));
  gap: var(--shelfops-skeleton-gap, 0.75rem);
  width: 100%;
}

.shelfops-skeleton-table-header .shelfops-skeleton {
  --shelfops-skeleton-height: 0.75rem;
}

.shelfops-skeleton-inline {
  display: inline-block;
}

.shelfops-skeleton-block {
  display: block;
}

[data-shelfops-skeleton-loading="true"] {
  min-width: min(100%, var(--shelfops-skeleton-container-width, 10rem));
}

@keyframes shelfops-skeleton-shimmer {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shelfops-skeleton {
    animation: none;
  }
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body,
.app-root {
  font-family: var(--kt-font-family);
  color: var(--kt-text-dark);
}

.shelfops-theme-admin,
.shelfops-theme-auth,
.shelfops-app-shell {
  background: var(--shelfops-canvas);
}

.shelfops-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--kt-font-family);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.shelfops-app-wordmark {
  font-size: 2.05rem;
}

.shelfops-sidebar-wordmark {
  font-size: 1.75rem;
}

.shelfops-auth-wordmark {
  font-size: clamp(2.85rem, 4.8vw, 4.4rem);
}

.shelfops-footer-wordmark {
  font-size: 0.94em;
}

.shelfops-theme-admin #kt_app_sidebar_logo {
  display: flex;
  align-items: center;
  min-height: var(--kt-app-header-height, 70px);
  height: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.shelfops-theme-admin #kt_app_sidebar_logo .shelfops-app-brand {
  min-width: 0;
  min-height: 3rem;
  align-items: center !important;
  line-height: 1;
}

.shelfops-theme-admin #kt_app_sidebar_logo .shelfops-sidebar-wordmark,
.shelfops-theme-admin #kt_app_sidebar_logo small {
  line-height: 1;
}

.shelfops-app-shell .app-header .shelfops-app-brand,
.shelfops-theme-admin .app-header .shelfops-app-brand {
  min-height: var(--kt-app-header-height, 70px);
  align-items: center !important;
  line-height: 1;
}

.shelfops-app-shell .app-header .shelfops-app-wordmark,
.shelfops-theme-admin .app-header .shelfops-app-wordmark {
  line-height: 1;
}

.shelfops-app-shell .app-header,
.shelfops-app-shell #kt_app_footer {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--shelfops-border);
}

.shelfops-app-shell .app-header {
  border-bottom: 1px solid var(--shelfops-border);
  box-shadow: 0 10px 30px -28px rgba(15, 23, 42, 0.65);
  backdrop-filter: saturate(160%) blur(8px);
}

.shelfops-app-shell #kt_app_footer {
  flex-shrink: 0;
  border-top: 1px solid var(--shelfops-border);
}

.shelfops-app-shell #kt_app_footer,
.shelfops-theme-admin #kt_app_footer {
  font-size: 0.82rem;
  height: auto !important;
  min-height: 2.75rem;
}

.shelfops-app-shell #kt_app_footer .app-container,
.shelfops-theme-admin #kt_app_footer .app-container {
  min-height: 2.25rem;
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
}

.shelfops-theme-admin #kt_app_footer .menu-link {
  min-height: 1.8rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.shelfops-app-shell .app-wrapper {
  padding-top: 0;
}

.shelfops-app-shell .app-main {
  min-height: calc(100dvh - var(--kt-app-header-height, 70px));
}

.shelfops-app-shell #kt_app_content {
  padding-bottom: 1.5rem;
}

.shelfops-app-shell #kt_app_toolbar {
  border-bottom: 0;
  background: transparent;
}

.shelfops-app-shell #kt_app_toolbar_container,
.shelfops-app-shell #kt_app_header_container,
.shelfops-app-shell #kt_app_content_container,
.shelfops-app-shell #kt_app_footer .app-container {
  width: 100%;
  max-width: none !important;
}

.shelfops-app-shell #kt_app_header_container,
.shelfops-app-shell #kt_app_header_wrapper {
  align-items: center !important;
}

.shelfops-app-shell #kt_app_header_container {
  min-height: var(--kt-app-header-height, 70px);
}

.shelfops-app-shell .page-heading {
  letter-spacing: 0;
  color: var(--kt-text-dark) !important;
}

.shelfops-app-shell .page-title .text-muted {
  max-width: 60rem;
  color: var(--shelfops-muted) !important;
}

.shelfops-app-shell .table thead th {
  text-align: center !important;
}

.shelfops-dashboard-page .shelfops-dashboard-controls {
  margin-top: 1.5rem;
}

.shelfops-dashboard-page .shelfops-dashboard-control-set {
  padding: 0.35rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 14px 32px -24px rgba(37, 99, 235, 0.45);
}

.shelfops-dashboard-page .shelfops-dashboard-control-set .btn-primary {
  box-shadow: 0 10px 22px -16px rgba(37, 99, 235, 0.8);
}

.shelfops-dashboard-page .shelfops-dashboard-range {
  border-color: #bfdbfe !important;
  background-color: #f8fbff !important;
  color: #1e293b;
}

.shelfops-dashboard-page .shelfops-dashboard-kpi-card,
.shelfops-dashboard-page .shelfops-status-card {
  border: 1px solid #dbe4f0;
  box-shadow: 0 14px 32px -26px rgba(15, 23, 42, 0.38);
  min-height: 0;
}

.shelfops-dashboard-page .shelfops-dashboard-kpi-stack .card-body,
.shelfops-dashboard-page .shelfops-dashboard-kpi-grid .card-body,
.shelfops-dashboard-page .shelfops-status-stack .card-body {
  min-height: 0;
}

.shelfops-dashboard-page .shelfops-dashboard-chart-card [data-dashboard-chart] {
  min-height: 300px;
}

.shelfops-dashboard-page .shelfops-dashboard-kpi-value-skeleton {
  display: block;
  margin-bottom: 0.15rem;
}

.shelfops-dashboard-page .shelfops-dashboard-status-skeleton {
  display: block;
}

.shelfops-dashboard-page .shelfops-dashboard-skeleton-badge {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.shelfops-dashboard-page .shelfops-dashboard-skeleton-table-row td {
  height: 5.45rem;
}

.shelfops-dashboard-page .shelfops-dashboard-skeleton-table-row .shelfops-skeleton {
  display: inline-block;
}

.shelfops-dashboard-page .shelfops-dashboard-chart-skeleton {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  width: 100%;
  padding: 0.25rem 0 0;
}

.shelfops-dashboard-page .shelfops-dashboard-chart-skeleton-header {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  min-height: 3.25rem;
}

.shelfops-dashboard-page .shelfops-dashboard-chart-skeleton-plot {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 0.75rem;
  min-height: 220px;
  padding-top: 1.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.shelfops-dashboard-page .shelfops-dashboard-chart-skeleton-bar {
  --shelfops-skeleton-width: 100%;
  --shelfops-skeleton-height: var(--shelfops-dashboard-chart-bar-height, 44%);
  --shelfops-skeleton-radius: 0.55rem 0.55rem 0 0;
  min-height: 3rem;
}

.shelfops-dashboard-page .shelfops-empty-state-chart {
  min-height: 300px;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-card,
.shelfops-dashboard-page .shelfops-dashboard-panel-card * {
  font-family: var(--kt-font-family);
  letter-spacing: 0;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-card {
  min-width: 0;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-header {
  align-items: flex-start;
  min-height: 5.25rem;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-title {
  font-size: 1.35rem !important;
  line-height: 1.2;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-subtitle {
  font-size: 0.875rem !important;
  line-height: 1.35;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-body {
  min-height: 0;
  padding-top: 1.25rem !important;
  padding-bottom: 1.75rem !important;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-content {
  flex: 1 1 auto;
  min-height: 0;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-content.table-responsive {
  overflow-x: hidden;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-primary {
  font-size: 1rem !important;
  line-height: 1.35;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-secondary {
  font-size: 0.875rem !important;
  line-height: 1.35;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-collection,
.shelfops-dashboard-page .shelfops-dashboard-execution-collection {
  min-width: 0;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:first-child,
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:first-child,
.shelfops-dashboard-page .shelfops-dashboard-executions-table th:first-child,
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:first-child {
  text-align: left !important;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:first-child > .shelfops-dashboard-upcoming-collection,
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:first-child > .shelfops-dashboard-execution-collection {
  justify-content: flex-start !important;
  text-align: left;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-icon .symbol-label,
.shelfops-dashboard-page .shelfops-dashboard-execution-icon .symbol-label {
  width: 2.5rem;
  height: 2.5rem;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-table {
  margin-bottom: 0;
  width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-table th,
.shelfops-dashboard-page .shelfops-dashboard-panel-table td {
  min-width: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-table .shelfops-dashboard-panel-primary,
.shelfops-dashboard-page .shelfops-dashboard-panel-table .shelfops-dashboard-panel-secondary {
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-table .text-truncate {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-table thead th {
  height: 4.25rem;
  padding-top: 1rem !important;
  padding-right: 0.35rem !important;
  padding-bottom: 1rem !important;
  padding-left: 0.35rem !important;
  font-size: 0.75rem !important;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-table tbody td {
  height: 5.45rem;
  padding-top: 0.95rem !important;
  padding-right: 0.45rem !important;
  padding-bottom: 0.95rem !important;
  padding-left: 0.45rem !important;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:nth-child(1),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:nth-child(1) {
  width: 30%;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:nth-child(2),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:nth-child(2) {
  width: 13%;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:nth-child(3),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:nth-child(3) {
  width: 11%;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:nth-child(4),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:nth-child(4) {
  width: 12%;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:nth-child(5),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:nth-child(5),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:nth-child(6),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:nth-child(6) {
  width: 10%;
}

.shelfops-dashboard-page .shelfops-dashboard-upcoming-table th:nth-child(7),
.shelfops-dashboard-page .shelfops-dashboard-upcoming-table td:nth-child(7) {
  width: 14%;
}

.shelfops-dashboard-page .shelfops-dashboard-executions-table th:nth-child(1),
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:nth-child(1) {
  width: 20%;
}

.shelfops-dashboard-page .shelfops-dashboard-executions-table th:nth-child(2),
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:nth-child(2) {
  width: 22%;
}

.shelfops-dashboard-page .shelfops-dashboard-executions-table th:nth-child(3),
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:nth-child(3) {
  width: 11%;
}

.shelfops-dashboard-page .shelfops-dashboard-executions-table th:nth-child(4),
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:nth-child(4) {
  width: 12%;
}

.shelfops-dashboard-page .shelfops-dashboard-executions-table th:nth-child(5),
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:nth-child(5) {
  width: 8%;
}

.shelfops-dashboard-page .shelfops-dashboard-executions-table th:nth-child(6),
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:nth-child(6) {
  width: 12%;
}

.shelfops-dashboard-page .shelfops-dashboard-executions-table th:nth-child(7),
.shelfops-dashboard-page .shelfops-dashboard-executions-table td:nth-child(7) {
  width: 15%;
}

.shelfops-dashboard-page .shelfops-dashboard-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(4.75rem, 100%);
  max-width: 100%;
  min-height: 1.5rem;
  font-size: 0.75rem !important;
  line-height: 1.15;
  white-space: normal;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-summary {
  min-height: 1.25rem;
  line-height: 1.35;
}

.shelfops-dashboard-page .shelfops-dashboard-panel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  min-height: 2.5rem;
  font-size: 0.875rem !important;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .shelfops-dashboard-page .shelfops-dashboard-panel-table,
  .shelfops-dashboard-page .shelfops-dashboard-panel-table thead,
  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody,
  .shelfops-dashboard-page .shelfops-dashboard-panel-table tr,
  .shelfops-dashboard-page .shelfops-dashboard-panel-table th,
  .shelfops-dashboard-page .shelfops-dashboard-panel-table td {
    display: block;
    width: 100%;
  }

  .shelfops-dashboard-page .shelfops-dashboard-upcoming-table th,
  .shelfops-dashboard-page .shelfops-dashboard-upcoming-table td,
  .shelfops-dashboard-page .shelfops-dashboard-executions-table th,
  .shelfops-dashboard-page .shelfops-dashboard-executions-table td {
    width: 100% !important;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table thead {
    display: none;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody {
    display: grid;
    gap: 0.85rem;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--shelfops-border-soft);
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody tr:last-child {
    border-bottom: 0;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody tr.shelfops-empty-table-row,
  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody tr.shelfops-dashboard-skeleton-table-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody td {
    height: auto;
    padding: 0 !important;
    border-bottom: 0 !important;
    text-align: left !important;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody td[colspan] {
    grid-column: 1 / -1;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody td::before {
    content: attr(data-dashboard-cell-label);
    display: block;
    margin-bottom: 0.35rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody td:not([data-dashboard-cell-label])::before {
    content: none;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody td > .d-flex {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

@media (max-width: 575.98px) {
  .shelfops-dashboard-page .shelfops-dashboard-range {
    width: 100% !important;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-action {
    width: 100%;
  }

  .shelfops-dashboard-page .shelfops-dashboard-panel-table tbody tr {
    grid-template-columns: minmax(0, 1fr);
  }
}

.shelfops-app-shell .menu-link.active {
  color: var(--kt-primary);
}

.shelfops-app-shell .app-header .menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  border-radius: 0.65rem;
  color: #475569;
}

.shelfops-app-shell .app-header .menu-link:not(:hover),
.shelfops-app-shell .app-header .menu-link:not(:hover) .menu-title {
  color: var(--kt-gray-900, #181c32);
}

.shelfops-app-shell .app-header .menu-link:hover,
.shelfops-app-shell .app-header .menu-link.active {
  background: var(--kt-primary-light);
}

.shelfops-app-shell .app-header .menu-link.active::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0.35rem;
  left: 1rem;
  height: 3px;
  border-radius: 999px;
  background: var(--kt-primary);
}

.shelfops-app-shell .app-navbar .symbol-label,
.shelfops-app-shell .symbol .symbol-label {
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.shelfops-app-shell .shelfops-header-store-name {
  max-width: 8.5rem;
}

.shelfops-app-shell .shelfops-header-plan-label {
  max-width: 8.5rem;
  font-size: 0.7rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 1400px) {
  .shelfops-app-shell .shelfops-header-store-name {
    max-width: 12rem;
  }

  .shelfops-app-shell .shelfops-header-plan-label {
    max-width: 12rem;
  }

  .shelfops-app-shell .app-header-menu,
  .shelfops-app-shell #kt_app_header_menu,
  .shelfops-app-shell #kt_app_header_menu > .menu-item,
  .shelfops-app-shell .app-navbar,
  .shelfops-app-shell .app-navbar-item {
    display: flex;
    align-items: center !important;
  }

  .shelfops-app-shell .app-header-menu,
  .shelfops-app-shell #kt_app_header_menu,
  .shelfops-app-shell .app-navbar {
    min-height: var(--kt-app-header-height, 70px);
  }

  .shelfops-app-shell #kt_app_header_wrapper {
    gap: 1rem;
  }

  .shelfops-app-shell .app-header-menu {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }

  .shelfops-app-shell #kt_app_header_menu {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .shelfops-app-shell .app-navbar {
    flex: 0 0 auto;
    margin-left: 0 !important;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .shelfops-app-shell #kt_header_user_menu_toggle > .cursor-pointer > .d-sm-flex {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .shelfops-app-shell #kt_app_header_container {
    position: relative;
  }

  .shelfops-app-shell #kt_app_header_wrapper {
    justify-content: flex-end !important;
  }

  .shelfops-app-shell .app-header-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 1;
    flex: 0 0 auto;
    min-width: max-content;
    transform: translateX(-50%);
  }

  .shelfops-app-shell #kt_app_header_menu {
    width: auto;
  }

  .shelfops-app-shell .app-navbar {
    position: relative;
    z-index: 2;
  }
}

.shelfops-app-shell .card {
  border-radius: 0.75rem;
}

.shelfops-app-shell .card.card-flush {
  border: 1px solid var(--shelfops-border-soft);
  box-shadow: var(--shelfops-shadow);
}

.shelfops-app-shell .card.card-bordered {
  border-color: var(--shelfops-border-soft);
}

.shelfops-app-shell .card-header {
  min-height: 4.75rem;
}

.shelfops-app-shell .card .card-title h2,
.shelfops-app-shell .card .card-title h3,
.shelfops-app-shell .card-title .card-label {
  color: var(--kt-text-dark) !important;
}

.shelfops-app-shell .text-gray-400,
.shelfops-app-shell .text-gray-500,
.shelfops-app-shell .text-muted {
  color: var(--shelfops-muted) !important;
}

.shelfops-app-shell .badge {
  letter-spacing: 0;
}

.shelfops-app-shell .shelfops-activity-menu-item {
  display: grid !important;
  grid-template-columns: minmax(5.75rem, max-content) minmax(0, 1fr) auto;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.shelfops-app-shell .shelfops-activity-menu-item > .d-flex {
  display: contents !important;
}

.shelfops-app-shell .shelfops-activity-menu-code {
  min-width: 5.75rem;
  max-width: 7rem;
  overflow: hidden;
  justify-content: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelfops-app-shell .shelfops-activity-menu-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelfops-app-shell .shelfops-activity-menu-time {
  justify-self: end;
  white-space: nowrap;
}

.shelfops-app-shell .btn {
  letter-spacing: 0;
}

.shelfops-app-shell .btn:not(.btn-icon) {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shelfops-app-shell .btn-sm:not(.btn-icon) {
  min-height: 2.25rem;
}

.shelfops-app-shell .btn-light,
.shelfops-app-shell .btn-light-primary {
  border: 1px solid rgba(226, 232, 240, 0.82);
}

.shelfops-app-shell .form-control,
.shelfops-app-shell .form-select {
  border-color: rgba(226, 232, 240, 0.9);
}

.shelfops-app-shell .form-control:focus,
.shelfops-app-shell .form-select:focus {
  border-color: rgba(var(--bs-primary-rgb), 0.42);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.1);
}

.shelfops-app-shell .table td,
.shelfops-app-shell .table th {
  vertical-align: middle;
}

.shelfops-app-shell .shelfops-grid-table th,
.shelfops-app-shell .shelfops-grid-table td {
  text-align: center !important;
  vertical-align: middle;
}

.shelfops-app-shell .shelfops-grid-table th > .form-check,
.shelfops-app-shell .shelfops-grid-table td > .form-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: auto !important;
  margin-left: auto !important;
}

.shelfops-app-shell .shelfops-grid-table th > .d-flex,
.shelfops-app-shell .shelfops-grid-table td > .d-flex {
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}

.shelfops-app-shell .shelfops-grid-table th > .d-flex.flex-column,
.shelfops-app-shell .shelfops-grid-table td > .d-flex.flex-column,
.shelfops-app-shell .shelfops-grid-table td > .d-flex > .d-flex.flex-column {
  align-items: center !important;
}

.shelfops-app-shell .shelfops-grid-table td > .d-flex.flex-wrap,
.shelfops-app-shell .shelfops-grid-table td > .d-flex .d-flex.flex-wrap {
  justify-content: center !important;
}

.shelfops-app-shell #kt_products_datatable th:nth-child(2),
.shelfops-app-shell #kt_products_datatable td:nth-child(2),
.shelfops-app-shell #kt_datatable_example_1 th:nth-child(2),
.shelfops-app-shell #kt_datatable_example_1 td:nth-child(2),
.shelfops-app-shell #kt_schedules_datatable th:nth-child(3),
.shelfops-app-shell #kt_schedules_datatable td:nth-child(3) {
  text-align: left !important;
}

.shelfops-app-shell #kt_products_datatable td:nth-child(2) > .d-flex,
.shelfops-app-shell #kt_datatable_example_1 td:nth-child(2) > .d-flex,
.shelfops-app-shell #kt_schedules_datatable td:nth-child(3) > .d-flex {
  justify-content: flex-start !important;
  text-align: left !important;
}

.shelfops-app-shell #kt_products_datatable td:nth-child(2) > .d-flex > .d-flex.flex-column,
.shelfops-app-shell #kt_datatable_example_1 td:nth-child(2) > .d-flex,
.shelfops-app-shell #kt_schedules_datatable td:nth-child(3) > .d-flex > .d-flex.flex-column {
  align-items: flex-start !important;
  text-align: left !important;
}

.shelfops-app-shell #kt_datatable_example_1 td:nth-child(2) > .d-flex > .d-flex {
  justify-content: flex-start !important;
  text-align: left !important;
}

.shelfops-app-shell .shelfops-grid-table td .badge {
  text-align: center;
}

.shelfops-app-shell .shelfops-grid-table td > .menu,
.shelfops-app-shell .shelfops-grid-table td > .menu * {
  text-align: left;
}

.shelfops-app-shell .shelfops-grid-table td > .menu .menu-link {
  justify-content: flex-start !important;
}

.shelfops-app-shell .table thead th {
  color: #64748b !important;
  letter-spacing: 0;
}

.shelfops-app-shell .table tbody td {
  color: #475569;
}

.shelfops-app-shell .table tbody tr:hover td {
  background-color: rgba(248, 250, 252, 0.72);
}

.shelfops-app-shell .shelfops-data-toolbar {
  align-items: stretch;
}

.shelfops-app-shell .shelfops-data-toolbar .form-control {
  min-height: 2.75rem;
}

.shelfops-app-shell .shelfops-side-rail .card .card-body {
  min-height: 8.25rem;
}

.shelfops-app-shell .shelfops-side-rail .shelfops-rail-card .card-body {
  min-height: 6.25rem;
}

.shelfops-app-shell .shelfops-empty-panel .card-body {
  background: #ffffff;
}

.shelfops-app-shell [data-shelfops-empty-state] {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(203, 213, 225, 0.95);
  background: #ffffff !important;
}

.shelfops-app-shell [data-shelfops-empty-state] p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.shelfops-app-shell .shelfops-empty-panel-table {
  margin: 0.75rem 0;
  box-shadow: none;
}

.shelfops-app-shell .shelfops-empty-panel-table [data-shelfops-empty-state] {
  min-height: 16rem;
}

.shelfops-app-shell .shelfops-empty-state-table {
  min-height: 16rem;
}

.shelfops-app-shell .shelfops-empty-panel-inline {
  box-shadow: none;
}

.shelfops-app-shell .shelfops-empty-panel-inline [data-shelfops-empty-state] {
  min-height: 12rem;
}

.shelfops-app-shell .shelfops-empty-table-cell,
.shelfops-app-shell table.dataTable tbody td.dataTables_empty {
  padding: 1rem !important;
  background: #ffffff !important;
}

.shelfops-app-shell .shelfops-grid-table tbody tr.shelfops-empty-table-row:hover td,
.shelfops-app-shell table.dataTable tbody tr:hover td.dataTables_empty {
  background: #ffffff !important;
}

.shelfops-app-shell .shelfops-empty-panel .shelfops-warning-state {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(245, 158, 11, 0.58);
  background: rgba(255, 251, 235, 0.72) !important;
}

.shelfops-app-shell .shelfops-summary-stack > * + * {
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  padding-top: 1.25rem;
}

.shelfops-app-shell .shelfops-settings-tabs {
  width: 100%;
  min-width: 0;
  overflow: visible;
  column-gap: clamp(1.5rem, 3vw, 3.25rem);
  row-gap: 0.5rem;
}

.shelfops-app-shell .shelfops-settings-tabs .nav-item {
  flex: 0 0 auto;
}

.shelfops-app-shell .shelfops-settings-tabs .nav-link {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  margin: 0 !important;
  padding: 1rem 0 1.1rem !important;
  overflow: visible;
  white-space: nowrap;
  font-size: 1.05rem;
  line-height: 1.15;
}

.shelfops-app-shell .shelfops-settings-tabs .nav-link i {
  flex: 0 0 auto;
}

.shelfops-app-shell .shelfops-choice-grid .btn,
.shelfops-app-shell [data-kt-buttons="true"] .btn {
  border-color: rgba(203, 213, 225, 0.9);
}

.shelfops-app-shell .shelfops-choice-grid .btn.active,
.shelfops-app-shell [data-kt-buttons="true"] .btn.active {
  border-color: rgba(var(--bs-primary-rgb), 0.58) !important;
  background-color: var(--kt-primary-light) !important;
}

.shelfops-app-shell [data-shopify-scopes-list].shelfops-permission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  min-height: 4.5rem;
}

.shelfops-app-shell .shelfops-permission-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  height: 100%;
  padding: 1rem;
  border: 1px solid #e4e6ef;
  border-radius: 0.475rem;
  background: #ffffff;
}

.shelfops-app-shell .shelfops-permission-card .badge {
  flex-shrink: 0;
  margin-left: auto;
  white-space: nowrap;
}

.shelfops-app-shell .shelfops-permission-card .text-muted {
  overflow-wrap: anywhere;
}

@media (max-width: 575.98px) {
  .shelfops-app-shell .shelfops-settings-tabs {
    column-gap: 1.25rem;
  }

  .shelfops-app-shell .shelfops-settings-tabs .nav-link {
    min-height: 3.25rem;
    font-size: 1rem;
  }

  .shelfops-app-shell [data-shopify-scopes-list].shelfops-permission-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .shelfops-app-shell .shelfops-permission-card {
    gap: 0.75rem;
    padding: 0.875rem;
  }
}

.shelfops-shopify-shell [data-shopify-diagnostics-badge] {
  align-self: center;
}

.shelfops-shopify-shell [data-shopify-diagnostics-log] {
  white-space: pre-wrap;
  word-break: break-word;
}

.shelfops-theme-auth {
  color: var(--kt-text-dark);
}

.shelfops-theme-auth .shelfops-auth-panel {
  width: min(100%, 33rem);
}

.shelfops-theme-auth .shelfops-auth-aside {
  background: var(--kt-primary);
}

.shelfops-theme-auth .shelfops-auth-brand {
  line-height: 1;
}

.shelfops-theme-auth .form-control:focus {
  border-color: rgba(var(--bs-primary-rgb), 0.42);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.12);
}

.shelfops-theme-auth .otp-code-inputs {
  gap: 0.5rem;
  justify-content: center;
}

.shelfops-theme-auth .otp-code-inputs .form-control {
  margin: 0 !important;
}

.field-validation-error,
.validation-summary-errors {
  color: #f1416c;
  display: block;
  margin-top: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.validation-summary-valid {
  display: none;
}

.form-control[aria-invalid="true"] {
  border-color: #f1416c;
}

.shelfops-collections-table-wrap,
.shelfops-products-table-wrap,
.shelfops-schedules-table-wrap,
.shelfops-backups-table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 0.65rem;
}

.shelfops-products-table-wrap,
.shelfops-schedules-table-wrap,
.shelfops-backups-table-wrap {
  min-height: 43rem;
}

.shelfops-app-shell #kt_products_datatable,
.shelfops-app-shell #kt_schedules_datatable,
.shelfops-app-shell #kt_backups_datatable {
  table-layout: fixed;
}

.shelfops-collections-table-wrap #kt_datatable_example_1,
.shelfops-collections-table-wrap #kt_collections_datatable {
  min-width: 1380px;
}

.shelfops-products-table-wrap #kt_products_datatable {
  min-width: 1180px;
}

.shelfops-app-shell #kt_products_datatable th:nth-child(1),
.shelfops-app-shell #kt_products_datatable td:nth-child(1) {
  width: 48px;
}

.shelfops-app-shell #kt_products_datatable th:nth-child(2),
.shelfops-app-shell #kt_products_datatable td:nth-child(2) {
  width: 360px;
}

.shelfops-app-shell #kt_products_datatable th:nth-child(3),
.shelfops-app-shell #kt_products_datatable td:nth-child(3),
.shelfops-app-shell #kt_products_datatable th:nth-child(6),
.shelfops-app-shell #kt_products_datatable td:nth-child(6),
.shelfops-app-shell #kt_products_datatable th:nth-child(7),
.shelfops-app-shell #kt_products_datatable td:nth-child(7),
.shelfops-app-shell #kt_products_datatable th:nth-child(9),
.shelfops-app-shell #kt_products_datatable td:nth-child(9) {
  width: 120px;
}

.shelfops-schedules-table-wrap #kt_schedules_datatable {
  min-width: 1095px;
}

.shelfops-app-shell #kt_schedules_datatable th:nth-child(1),
.shelfops-app-shell #kt_schedules_datatable td:nth-child(1) {
  width: 48px;
}

.shelfops-app-shell #kt_schedules_datatable th:nth-child(2),
.shelfops-app-shell #kt_schedules_datatable td:nth-child(2) {
  width: 175px;
}

.shelfops-app-shell #kt_schedules_datatable th:nth-child(5),
.shelfops-app-shell #kt_schedules_datatable td:nth-child(5),
.shelfops-app-shell #kt_schedules_datatable th:nth-child(6),
.shelfops-app-shell #kt_schedules_datatable td:nth-child(6),
.shelfops-app-shell #kt_schedules_datatable th:nth-child(7),
.shelfops-app-shell #kt_schedules_datatable td:nth-child(7) {
  width: 130px;
}

.shelfops-app-shell #kt_schedules_datatable th:nth-child(3),
.shelfops-app-shell #kt_schedules_datatable td:nth-child(3) {
  width: 310px;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(1),
.shelfops-app-shell #kt_backups_datatable td:nth-child(1) {
  width: 220px;
  text-align: left !important;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(2),
.shelfops-app-shell #kt_backups_datatable td:nth-child(2) {
  width: 130px;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(3),
.shelfops-app-shell #kt_backups_datatable td:nth-child(3) {
  width: 130px;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(4),
.shelfops-app-shell #kt_backups_datatable td:nth-child(4) {
  width: 95px;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(5),
.shelfops-app-shell #kt_backups_datatable td:nth-child(5) {
  width: 270px;
  text-align: left !important;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(6),
.shelfops-app-shell #kt_backups_datatable td:nth-child(6) {
  width: 110px;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(7),
.shelfops-app-shell #kt_backups_datatable td:nth-child(7),
.shelfops-app-shell #kt_backups_datatable th:nth-child(8),
.shelfops-app-shell #kt_backups_datatable td:nth-child(8) {
  width: 130px;
}

.shelfops-app-shell #kt_backups_datatable th:nth-child(9),
.shelfops-app-shell #kt_backups_datatable td:nth-child(9) {
  width: 240px;
  text-align: left !important;
}

.shelfops-app-shell #kt_backups_datatable td:nth-child(1) > .d-flex,
.shelfops-app-shell #kt_backups_datatable td:nth-child(5) > .d-flex {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.shelfops-app-shell #kt_backups_datatable td:nth-child(1) > .d-flex.flex-column,
.shelfops-app-shell #kt_backups_datatable td:nth-child(5) > .d-flex.flex-column {
  align-items: flex-start !important;
  text-align: left !important;
}

.shelfops-app-shell #kt_backups_datatable th,
.shelfops-app-shell #kt_backups_datatable td {
  white-space: normal !important;
  word-break: normal;
}

.shelfops-app-shell .shelfops-backups-table-wrap #kt_backups_datatable thead th {
  height: 4.25rem;
  padding-top: 1rem !important;
  padding-right: 0.5rem !important;
  padding-bottom: 1rem !important;
  padding-left: 0.5rem !important;
  font-size: 0.75rem !important;
  line-height: 1.2;
}

.shelfops-app-shell .shelfops-backups-table-wrap #kt_backups_datatable tbody td {
  height: 5.25rem;
  padding-top: 0.95rem !important;
  padding-right: 0.55rem !important;
  padding-bottom: 0.95rem !important;
  padding-left: 0.55rem !important;
}

.shelfops-app-shell #kt_products_datatable td,
.shelfops-app-shell #kt_schedules_datatable td,
.shelfops-app-shell #kt_backups_datatable td {
  overflow-wrap: anywhere;
}

.shelfops-app-shell div.dataTables_wrapper div.dataTables_processing,
.shelfops-app-shell div.dataTables_wrapper div.dataTables_processing.card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 0;
  margin-left: 0;
  margin-top: 0;
  padding: 0 !important;
  transform: translate(-50%, -50%);
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  pointer-events: none;
  --bs-card-bg: transparent;
  --bs-card-border-width: 0;
  --bs-card-border-color: transparent;
  --bs-card-border-radius: 0;
  --bs-card-box-shadow: none;
}

.shelfops-datatables-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.475rem;
  background: #ffffff;
  box-shadow: 0 0.75rem 1.75rem rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.shelfops-app-shell .shelfops-collection-row {
  cursor: pointer;
}

.shelfops-app-shell .shelfops-collection-title {
  display: inline-block;
  max-width: min(24rem, 46vw);
}

.shelfops-app-shell .shelfops-collection-handle {
  max-width: min(24rem, 46vw);
}

.shelfops-app-shell .shelfops-collections-cards-page [data-collections-list] {
  min-height: 14rem;
}

.shelfops-app-shell .shelfops-collections-view-shell {
  padding: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.65rem;
  background: #ffffff;
}

.shelfops-app-shell .shelfops-collections-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.65rem;
  background: #ffffff;
}

.shelfops-app-shell .shelfops-collections-view-toggle .btn {
  width: 2.35rem;
  height: 2.35rem;
  min-height: 2.35rem;
  border: 0 !important;
  color: #94a3b8;
  background: transparent;
}

.shelfops-app-shell .shelfops-collections-view-toggle .btn.active {
  color: var(--kt-primary);
  background: rgba(var(--bs-primary-rgb), 0.08);
}

.shelfops-app-shell #kt_collections_datatable th:nth-child(1),
.shelfops-app-shell #kt_collections_datatable td:nth-child(1) {
  text-align: left !important;
}

.shelfops-app-shell #kt_collections_datatable td:nth-child(1) > .d-flex {
  justify-content: flex-start !important;
  text-align: left !important;
}

.shelfops-app-shell #kt_collections_datatable td:nth-child(1) > .d-flex > .d-flex.flex-column {
  align-items: flex-start !important;
  text-align: left !important;
}

.shelfops-app-shell .shelfops-collections-sync-actions > .d-flex {
  width: 100%;
}

body > .blockui-overlay.shelfops-sync-block-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(248, 250, 252, 0.68) !important;
  backdrop-filter: blur(2px);
}

.shelfops-sync-swal-html {
  margin: 0;
}

.shelfops-sync-swal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.shelfops-sync-swal-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.shelfops-sync-swal-title-icon {
  color: #95bf47;
}

.shelfops-sync-swal-spinner {
  line-height: 1;
}

.shelfops-sync-swal-progress {
  width: min(18rem, 100%);
  height: 0.55rem;
  background-color: var(--kt-gray-200);
}

.shelfops-sync-swal-progress .progress-bar {
  width: 100%;
}

@media (min-width: 576px) {
  .shelfops-app-shell .shelfops-collections-sync-actions > .d-flex {
    width: auto;
  }
}

.shelfops-app-shell .shelfops-collection-card {
  cursor: pointer;
}

.shelfops-app-shell .shelfops-collection-card[data-detail-disabled="true"] {
  cursor: default;
}

.shelfops-app-shell .shelfops-collection-card-skeleton {
  cursor: wait;
}

.shelfops-app-shell .shelfops-collection-card-skeleton .card-body {
  min-height: 20rem;
}

.shelfops-app-shell .shelfops-collection-card-skeleton-layout {
  --shelfops-skeleton-gap: 0.85rem;
}

.shelfops-app-shell .shelfops-collection-card-skeleton .shelfops-skeleton-card-media {
  --shelfops-skeleton-radius: 0.65rem;
}

.shelfops-app-shell .shelfops-collection-card .card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.shelfops-app-shell .shelfops-collection-card .card-header .card-title {
  min-width: 0;
  width: 100%;
}

.shelfops-app-shell .shelfops-collection-card .card-header .card-title > .d-flex {
  min-width: 0;
  max-width: 100%;
}

.shelfops-app-shell .shelfops-collection-card .card-header .card-toolbar {
  justify-self: end;
  align-self: start;
}

.shelfops-app-shell .shelfops-collection-card:focus-visible {
  outline: 2px solid rgba(var(--bs-primary-rgb), 0.45);
  outline-offset: 3px;
}

.shelfops-app-shell .shelfops-collection-card .card-body {
  flex: 1 1 auto;
  min-height: 0;
}

.shelfops-app-shell .shelfops-collection-card .card-footer {
  flex: 0 0 auto;
}

.shelfops-app-shell .shelfops-collection-card-detail-action {
  font-size: 0.78rem !important;
  line-height: 1.1;
}

.shelfops-app-shell .shelfops-collection-card-title {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.shelfops-app-shell .shelfops-collection-card-handle {
  min-width: 0;
  max-width: 100%;
}

.shelfops-app-shell .shelfops-collection-card-status {
  white-space: nowrap;
}

.shelfops-app-shell .shelfops-collection-card-image img {
  object-fit: cover;
}

.shelfops-app-shell .shelfops-collection-card-stat {
  min-width: 0;
  height: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.55rem;
  background: #ffffff;
}

.shelfops-app-shell .shelfops-collection-card-strategy {
  display: block;
  overflow-wrap: anywhere;
}

.shelfops-app-shell .shelfops-collection-card-issue {
  min-width: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(var(--bs-warning-rgb), 0.22);
  border-radius: 0.55rem;
  background: rgba(var(--bs-warning-rgb), 0.06);
}

.shelfops-app-shell .shelfops-collection-card-issue[data-issue-tone="danger"] {
  border-color: rgba(var(--bs-danger-rgb), 0.22);
  background: rgba(var(--bs-danger-rgb), 0.06);
}

.shelfops-app-shell .shelfops-collection-card-issue[data-issue-tone="info"] {
  border-color: rgba(var(--bs-info-rgb), 0.22);
  background: rgba(var(--bs-info-rgb), 0.06);
}

.shelfops-app-shell .shelfops-collection-card-run {
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(203, 213, 225, 0.95);
  border-radius: 0.65rem;
  background: #ffffff;
}

.shelfops-app-shell .shelfops-collection-card-run[data-run-tone="success"] {
  border-color: rgba(var(--bs-success-rgb), 0.28);
}

.shelfops-app-shell .shelfops-collection-card-run[data-run-tone="danger"] {
  border-color: rgba(var(--bs-danger-rgb), 0.28);
}

.shelfops-app-shell .shelfops-collection-card-run[data-run-tone="warning"] {
  border-color: rgba(var(--bs-warning-rgb), 0.32);
}

.shelfops-app-shell .shelfops-collection-card-run[data-run-tone="primary"] {
  border-color: rgba(var(--bs-primary-rgb), 0.28);
}

.shelfops-app-shell .shelfops-collection-card-run .symbol-label {
  border: 0;
}

.shelfops-app-shell .shelfops-collection-card-run-row,
.shelfops-app-shell .shelfops-collection-card-run-main {
  min-width: 0;
}

.shelfops-app-shell .shelfops-collection-card-run-main {
  flex: 1 1 auto;
}

.shelfops-app-shell .shelfops-collection-card-run-meta {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 48%;
}

.shelfops-app-shell .shelfops-collection-card-run-badge,
.shelfops-app-shell .shelfops-collection-card-run-date {
  max-width: 100%;
}

.shelfops-app-shell .shelfops-collection-card-run-badge {
  white-space: normal;
}

.shelfops-app-shell .shelfops-collection-card-run-date {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

@media (max-width: 575.98px) {
  .shelfops-app-shell .shelfops-collection-card .card-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .shelfops-app-shell .shelfops-collection-card .card-header .card-toolbar {
    justify-self: start;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .shelfops-app-shell .shelfops-collection-card-status {
    white-space: normal;
    text-align: left;
  }

  .shelfops-app-shell .shelfops-collection-card-run-row--split {
    flex-direction: column;
    align-items: stretch !important;
  }

  .shelfops-app-shell .shelfops-collection-card-run-main {
    flex-direction: row;
    align-items: center !important;
    width: 100%;
  }

  .shelfops-app-shell .shelfops-collection-card-run-meta {
    align-items: flex-start !important;
    max-width: 100%;
    text-align: left !important;
  }

  .shelfops-app-shell .shelfops-collection-card .card-footer > .d-flex {
    justify-content: stretch !important;
  }

  .shelfops-app-shell .shelfops-collection-card-detail-action {
    width: 100%;
  }
}

.shelfops-app-shell .shelfops-collections-pagination {
  min-height: 2.5rem;
}

.shelfops-app-shell .shelfops-collection-context-card {
  display: block;
  color: inherit;
}

.shelfops-app-shell .shelfops-collection-context-card:hover {
  color: inherit;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-section-title {
  font-size: 1.5rem !important;
  line-height: 1.15;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-tabs-surface {
  padding: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.65rem;
  background: #ffffff;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs-wrap {
  margin-bottom: 0;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  margin-bottom: 0 !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs > .nav-item {
  margin-bottom: 0.5rem !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tab-content {
  margin-top: 0;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs .nav-link {
  position: relative;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs .shelfops-main-tab-button {
  width: 10.75rem !important;
  min-width: 9.25rem;
  height: 6.15rem !important;
  min-height: 6.15rem;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs .nav-icon {
  margin-bottom: 0.55rem !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs .nav-icon i {
  font-size: 1.5rem !important;
  line-height: 1;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-collection-main-tabs .nav-text {
  max-width: 9rem;
  white-space: normal;
  text-align: center;
  font-size: 0.88rem !important;
  line-height: 1.05 !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-upcoming-schedules-card [data-dashboard-upcoming-item]:last-child {
  margin-bottom: 0 !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-configure-actions {
  min-height: 2.55rem;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-main-stack,
.shelfops-app-shell .shelfops-collection-detail .shelfops-side-rail-stack {
  width: 100%;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tabs {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tabs.shelfops-detail-tabs-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tabs > .nav-item {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding: 0 !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tab-link {
  width: 100%;
  min-width: 0;
  min-height: 3.35rem;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 0.65rem !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tab-link i {
  flex: 0 0 auto;
  margin-right: 0 !important;
  font-size: 1.15rem !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tab-title {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(0.74rem, 0.82vw, 0.98rem);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-section-description,
.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-description,
.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-helper {
  font-size: 0.82rem !important;
  line-height: 1.42;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card {
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  border-color: rgba(203, 213, 225, 0.95);
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card.active {
  border-color: rgba(var(--bs-primary-rgb), 0.72) !important;
  background-color: rgba(var(--bs-primary-rgb), 0.06) !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-heading {
  min-height: 2.65rem;
  margin-bottom: 0 !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-heading i {
  flex: 0 0 auto;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-name {
  font-size: 1.35rem;
  font-weight: 800 !important;
  line-height: 1.12;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card > .shelfops-strategy-name {
  margin-bottom: 0 !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-description {
  min-width: 0;
}

.shelfops-app-shell .shelfops-collection-detail .form-label,
.shelfops-app-shell .shelfops-collection-detail .form-check-label {
  font-size: 0.92rem;
  line-height: 1.3;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-label {
  font-size: 0.78rem !important;
  line-height: 1.2;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-detail-value {
  display: block;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.shelfops-app-shell .shelfops-collection-detail [data-preview-rows] .text-muted,
.shelfops-app-shell .shelfops-collection-detail [data-run-history] .text-danger {
  font-size: 0.82rem !important;
  line-height: 1.42;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-side-rail .card-body {
  min-height: 0;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-side-rail .card-header {
  min-height: auto;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-summary-tile {
  min-width: 0;
  min-height: 6.4rem;
  padding: 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.65rem;
  background: #ffffff;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-summary-heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  min-width: 0;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.45rem;
  font-size: 0.78rem;
  line-height: 1;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-summary-tile .shelfops-detail-label {
  display: block;
  margin-bottom: 0;
  font-size: 0.97rem !important;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-summary-tile .shelfops-detail-value {
  font-size: 0.98rem !important;
  line-height: 1.25;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  margin: 0;
  padding-left: 1.05rem;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-summary-list li {
  padding-left: 0.05rem;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-action-card .card-toolbar {
  align-self: flex-start;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-action-card .card-title {
  margin-bottom: 0;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-action-card .card-title h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-action-card .card-title span {
  font-size: 0.84rem !important;
  line-height: 1.35;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-action-card .card-body .d-flex.justify-content-between > span,
.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-action-card .card-body .d-flex.justify-content-between > a {
  font-size: 0.9rem !important;
  line-height: 1.35;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-rail-history-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 14rem;
  overflow-y: auto;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-stage-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  min-height: 2.75rem;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-stage-button {
  min-width: 12.25rem;
  min-height: 2.55rem;
  border-radius: 0.475rem;
  white-space: nowrap;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-stage-button-next {
  margin-left: auto;
}

.shelfops-app-shell .shelfops-collection-detail .shelfops-stage-button:disabled {
  pointer-events: none;
  opacity: 0.48;
}

@media (min-width: 1200px) {
  .shelfops-app-shell .shelfops-collection-detail .shelfops-detail-main-column,
  .shelfops-app-shell .shelfops-collection-detail .shelfops-side-rail {
    display: flex;
    align-items: stretch;
  }

  .shelfops-app-shell .shelfops-collection-detail .shelfops-detail-main-stack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 100%;
  }

  .shelfops-app-shell .shelfops-collection-detail .shelfops-side-rail-stack {
    align-self: flex-start;
  }

  .shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card {
    flex-direction: column;
    gap: 0.5rem;
  }

  .shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card > .shelfops-strategy-heading,
  .shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card > .shelfops-strategy-name,
  .shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card > .d-flex:first-child {
    flex: 0 0 auto;
  }

  .shelfops-app-shell .shelfops-collection-detail .shelfops-strategy-card > .shelfops-strategy-description {
    flex: 0 0 auto;
    padding-top: 0;
  }
}

@media (max-width: 1199.98px) {
  .shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .shelfops-app-shell .shelfops-collection-detail .shelfops-detail-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shelfops-app-shell .shelfops-collection-detail .shelfops-stage-navigation {
    flex-direction: column;
  }

  .shelfops-app-shell .shelfops-collection-detail .shelfops-stage-button {
    width: 100%;
    min-width: 0;
  }
}

.shelfops-backups-table-wrap #kt_backups_datatable {
  min-width: 1455px;
}

.shelfops-app-shell .shelfops-backups-page .shelfops-backup-summary-card .card-body {
  min-height: 0;
  padding: 1rem !important;
}

.shelfops-app-shell .shelfops-backups-page .shelfops-backup-summary-card .symbol {
  width: 2rem;
  height: 2rem;
}

.shelfops-app-shell .shelfops-backups-page .shelfops-backup-summary-card .symbol-label {
  width: 2rem;
  height: 2rem;
}

.shelfops-app-shell .shelfops-backups-page .shelfops-backup-summary-card [data-backup-summary-status] {
  font-size: 1.05rem !important;
  line-height: 1.2;
}

.shelfops-backup-summary-card .badge {
  white-space: normal;
}

.shelfops-backup-progress-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.shelfops-backup-option-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.75rem;
  padding: 1.25rem;
  border: 1px dashed rgba(203, 213, 225, 0.95);
  border-radius: 0.55rem;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.shelfops-backup-option-card.active {
  border-color: rgba(var(--bs-primary-rgb), 0.7);
  background: rgba(var(--bs-primary-rgb), 0.06);
  box-shadow: 0 12px 28px -24px rgba(37, 99, 235, 0.8);
}

.shelfops-backup-option-card .form-check-input {
  flex: 0 0 auto;
  margin: 0;
}

.shelfops-app-shell [data-shelfops-product-image="true"] {
  display: block;
  width: 50px;
  height: 50px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 0.65rem;
  background: #f8fafc;
}

@media (max-width: 991.98px) {
  .shelfops-products-table-wrap,
  .shelfops-schedules-table-wrap,
  .shelfops-backups-table-wrap {
    min-height: 36rem;
  }
}

@media (max-width: 1399.98px) {
  .shelfops-app-shell .app-header-menu {
    padding-top: 0.75rem;
  }

  .shelfops-app-shell #kt_app_header_menu {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .shelfops-app-shell #kt_app_header_menu > .menu-item {
    display: block;
    width: 100%;
  }

  .shelfops-app-shell .app-header .menu-link {
    width: 100%;
  }

  .shelfops-app-shell .app-header .menu-link.active::after {
    display: none;
  }
}

.shelfops-admin-context-card,
.shelfops-remote-api {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.475rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.shelfops-admin-context-card span,
.shelfops-remote-api span {
  display: block;
  color: #a1a5b7;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.shelfops-admin-context-card strong,
.shelfops-remote-api strong {
  display: block;
  margin-top: 0.25rem;
  color: #ffffff;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.shelfops-admin-context-card small {
  display: block;
  margin-top: 0.15rem;
  color: #b5b5c3;
  overflow-wrap: anywhere;
}

.shelfops-admin-context-card a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--shelfops-brand-blue-link);
  font-weight: 700;
  font-size: 0.85rem;
}

.shelfops-admin-context-card.is-ok {
  border-color: rgba(80, 205, 137, 0.65);
}

.shelfops-admin-context-card.is-watch {
  border-color: rgba(255, 199, 0, 0.65);
}

.shelfops-admin-context-card.is-critical,
.shelfops-admin-context-card.is-risk {
  border-color: rgba(241, 65, 108, 0.7);
}

.is-ok {
  color: #50cd89;
}

.is-watch {
  color: #f1bc00;
}

.is-critical,
.is-risk {
  color: #f1416c;
}

body.shelfops-install-required-active #kt_app_root {
  filter: blur(4px) brightness(0.92) saturate(0.96);
  pointer-events: none;
  user-select: none;
  transition: filter 120ms ease;
}

body.shelfops-install-required-active #kt_app_toolbar,
body.shelfops-install-required-active #kt_app_content {
  opacity: 0;
}

body.shelfops-install-required-active .swal2-container {
  filter: none;
}

@media (max-width: 991.98px) {
  .shelfops-app-shell #kt_app_toolbar_container {
    align-items: flex-start !important;
  }

  .shelfops-app-shell #kt_app_toolbar_container > .d-flex:last-child {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

}

@media (max-width: 767.98px) {
  .shelfops-app-shell #kt_app_toolbar {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .shelfops-app-shell .page-heading {
    font-size: 1.05rem !important;
    line-height: 1.25;
  }

  .shelfops-app-shell #kt_app_content_container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .shelfops-app-shell .card-header {
    min-height: auto;
    padding-top: 1.25rem !important;
  }

  .shelfops-app-shell .card-toolbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .shelfops-app-shell .shelfops-data-toolbar,
  .shelfops-app-shell .shelfops-data-toolbar > *,
  .shelfops-app-shell [data-kt-docs-table-toolbar="base"],
  .shelfops-app-shell [data-kt-products-table-toolbar="base"],
  .shelfops-app-shell [data-kt-backups-table-toolbar="base"] {
    width: 100%;
  }

  .shelfops-app-shell .shelfops-data-toolbar .form-control,
  .shelfops-app-shell .shelfops-data-toolbar .btn,
  .shelfops-app-shell [data-kt-docs-table-toolbar="base"] .btn,
  .shelfops-app-shell [data-kt-products-table-toolbar="base"] .btn,
  .shelfops-app-shell [data-kt-backups-table-toolbar="base"] .btn {
    width: 100%;
  }

  .shelfops-theme-auth .shelfops-auth-footer-links {
    gap: 0.75rem;
  }

  .shelfops-theme-auth .shelfops-auth-footer-links a {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .shelfops-app-shell .shelfops-settings-card .table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 0;
  }

  .shelfops-app-shell .shelfops-settings-card .table tbody td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
  }

  .shelfops-app-shell .shelfops-settings-card .badge.text-break,
  .shelfops-app-shell .shelfops-settings-card .badge.text-wrap {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    line-height: 1.25;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .shelfops-theme-auth .otp-code-inputs .form-control {
    width: 2.75rem !important;
    height: 3.25rem !important;
    font-size: 1.35rem !important;
  }
}
