.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}

.pagination a,
.pagination span,
.pagination em {
  padding: 6px 12px;
  border: 1px solid #dee2e6;
  color: #0d6efd;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.pagination em.current {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  font-style: normal;
}

.pagination a:hover {
  background-color: #e9ecef;
}

.pagination .disabled {
  color: #6c757d;
  pointer-events: none;
}


/* Toast message */
.sm-toast-container {
  position: fixed;
  top: 90px;     /* adjust this to match your header height */
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}

.sm-toast {
  min-width: 320px;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex !important;  /* override bootstrap */
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

/* Notice */
.sm-toast.notice {
  background: #ecfdf3;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

/* Alert */
.sm-toast.alert {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.sm-toast-icon {
  font-weight: bold;
}

.sm-toast-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: inherit;
  font-weight: bold;
  cursor: pointer;
}

.sm-toast {
  animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.text-red {
  color: red;
}

.fsm {
  font-size: smaller;
}

.border-blue {
  border-color: blue;
}

/* ── Shipping partner stepper ─────────────────────────────────────── */
.stepper-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #dee2e6;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.stepper-circle--active {
  background: #556ee6;
  border-color: #556ee6;
  color: #fff;
}

.stepper-circle--done {
  background: #34c38f;
  border-color: #34c38f;
  color: #fff;
}
