/* Business dashboard shell — greeting header on every section */
.influnet-dash-shell-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem;
  padding: 1rem 1.5rem !important;
  background: #f5f6fa !important;
  border-bottom: none !important;
}

.influnet-dash-shell-header > .flex.items-center.gap-3 {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.influnet-dash-shell-header .influnet-dash-greeting h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.influnet-dash-shell-header .influnet-dash-greeting p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #6b7280;
  max-width: 36rem;
}

.influnet-dash-shell-header .influnet-dash-header-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.influnet-dash-shell-header .influnet-dash-header-actions > button {
  flex-shrink: 0;
}

.influnet-dash-shell-header .influnet-dash-header-actions > .relative {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.influnet-dash-shell-header .influnet-dash-header-actions button.flex.items-center {
  display: inline-flex !important;
  align-items: center !important;
}

#influnet-dashboard-hero-mount {
  width: 100%;
  order: -1;
}

#influnet-dashboard-hero,
.influnet-dash-hero-section {
  margin: 0 0 0;
  border-radius: 1.25rem;
  background: linear-gradient(105deg, #ee3e96 0%, #f26e59 100%);
  box-shadow: 0 18px 40px rgba(238, 62, 150, 0.22);
  overflow: hidden;
  position: relative;
}

.influnet-dash-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.15rem;
  align-items: center;
}

@media (min-width: 900px) {
  .influnet-dash-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    padding: 1.15rem 1rem 1.15rem 2rem;
    min-height: 0;
    align-items: center;
  }
}

.influnet-dash-hero-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.influnet-dash-hero-copy p {
  margin: 0.4rem 0 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28rem;
}

.influnet-dash-search-wrap {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 9999px;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 34rem;
}

.influnet-dash-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: #111827;
  background: transparent;
  min-width: 0;
}

.influnet-dash-search-wrap input::placeholder {
  color: #9ca3af;
}

.influnet-dash-search-btn {
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 0.85rem;
  background: #ee3e96;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.influnet-dash-search-btn:hover {
  background: #d93686;
}

.influnet-dash-search-btn:active {
  transform: scale(0.97);
}

.influnet-dash-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.influnet-dash-chip {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.influnet-dash-chip:hover,
.influnet-dash-chip.is-active {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.75);
}

.influnet-dash-chip-more-wrap {
  position: relative;
}

.influnet-dash-chip-more-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 9rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  padding: 0.35rem;
  z-index: 20;
}

.influnet-dash-chip-more-wrap.is-open .influnet-dash-chip-more-menu {
  display: block;
}

.influnet-dash-chip-more-menu button {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: #374151;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.influnet-dash-chip-more-menu button:hover {
  background: #f3f4f6;
}

.influnet-dash-hero-art {
  display: none;
  width: 100%;
  min-height: 0;
  overflow: visible;
}

@media (min-width: 900px) {
  .influnet-dash-hero-art {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 0;
    margin: 0;
  }
}

.influnet-dash-hero-image-slot {
  width: 100%;
  min-height: 160px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.influnet-dash-hero-image-slot:not(.is-empty) {
  border: none;
  background: transparent;
  min-height: 0;
  height: auto;
  overflow: visible;
}

.influnet-dash-hero-image-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.influnet-dash-hero-image-slot.is-empty .influnet-dash-hero-img {
  display: none;
}

.influnet-dash-hero-image-slot:not(.is-empty) .influnet-dash-hero-image-label {
  display: none;
}

.influnet-dash-hero-image-slot img,
.influnet-dash-hero-image-slot .influnet-dash-hero-img {
  width: 100%;
  height: auto;
  max-height: 13.5rem;
  object-fit: contain;
  object-position: center right;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.1));
}

.influnet-dash-hide-welcome {
  display: none !important;
}

.influnet-dash-home-main {
  background: #f5f6fa !important;
}

.influnet-dash-home-main .p-6.space-y-6 {
  display: flex;
  flex-direction: column;
}
