@charset "UTF-8";
.monsterinsights-ecommerce-funnel-report__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.monsterinsights-ecommerce-funnel-report__funnel-select-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.monsterinsights-ecommerce-funnel-report__label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.monsterinsights-ecommerce-funnel-report__select {
  padding: 6px 12px;
  font-size: 13px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  outline: none;
  cursor: pointer;
  min-width: 180px;
}
.monsterinsights-ecommerce-funnel-report__select:focus {
  border-color: #509fe2;
}
.monsterinsights-ecommerce-funnel-report__manage-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #509fe2;
  background: transparent;
  border: 1px solid #509fe2;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.monsterinsights-ecommerce-funnel-report__manage-btn:hover {
  background: rgba(80, 159, 226, 0.06);
}
.monsterinsights-ecommerce-funnel-report__loading,
.monsterinsights-ecommerce-funnel-report__error,
.monsterinsights-ecommerce-funnel-report__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  color: #64748b;
  font-size: 14px;
}
.monsterinsights-ecommerce-funnel-report__error {
  color: #e53e3e;
}

/* Empty state — presented as a white notice card, matching the visual language
   of `.monsterinsights-not-authenticated-notice` (see _auth-notice.scss).

   Card chrome is intentionally hard-coded rather than using $color_card_background
   / $color_body_background: those two are *inverted* between the brands
   (MI card #fff / body #f3f6ff, EM card #F4F3F7 / body #fff), so a "card"
   variable would render a grey card on a white page under ExactMetrics.
   _auth-notice.scss hard-codes #fff for the same reason. Only the brand
   accents below (button, link) use variables, which is where they belong. */
.monsterinsights-ecommerce-funnel-report__empty {
  flex-direction: column;
  gap: 0;
  padding: 40px 20px 56px;
  text-align: center;
}
.monsterinsights-ecommerce-funnel-report__empty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 620px;
  max-width: 100%;
  margin: 0 auto;
  padding: 36px 40px 32px;
  background: #fff;
  border: 1px solid #d6e2ed;
  border-radius: 4px;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.08);
}
.monsterinsights-ecommerce-funnel-report__empty-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #393f4c;
}
.monsterinsights-ecommerce-funnel-report__empty-message {
  margin: 0;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
.monsterinsights-ecommerce-funnel-report__empty-hints {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  max-width: 460px;
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}
.monsterinsights-ecommerce-funnel-report__empty-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.monsterinsights-ecommerce-funnel-report__empty-steps code {
  padding: 3px 8px;
  border-radius: 3px;
  background: #f3f4f6;
  border: 1px solid #e3e7ec;
  color: #444;
  font-size: 12px;
}
.monsterinsights-ecommerce-funnel-report__empty-action {
  margin-top: 8px;
}
.monsterinsights-ecommerce-funnel-report__empty-doc {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #509fe2;
  text-decoration: none;
}
.monsterinsights-ecommerce-funnel-report__empty-doc:hover, .monsterinsights-ecommerce-funnel-report__empty-doc:focus {
  color: #3a93dd;
  text-decoration: underline;
}