.support-global-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 1px solid #f59e0b;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff7ed 0%, #fef3c7 100%);
  color: #92400e;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12);
}

.support-global-alert-message {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.support-global-alert-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  font-size: 15px;
}

.support-global-alert-count {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.support-global-alert-count.new {
  background: #dc2626;
  color: #fff;
}

.support-global-alert-count.unattended {
  background: #fff;
  color: #92400e;
  border: 1px solid #f59e0b;
}

@media (max-width: 760px) {
  .support-global-alert {
    align-items: stretch;
    flex-direction: column;
  }

  .support-global-alert > .btn {
    width: 100%;
  }
}
