/* Danger Notification (error messages) */

.notification.is-danger {
  position: relative;
  padding: var(--arp-space-4) 2.75rem var(--arp-space-4) 4.25rem;
  background: var(--arp-status-danger-bg);
  color: var(--arp-status-danger-fg);
  border: 1px solid var(--arp-status-danger-border);
  border-radius: var(--arp-radius-card);
  box-shadow: var(--arp-shadow-md);
}

.notification.is-danger::before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: var(--arp-space-5);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding-bottom: 2px;
  border-radius: 50%;
  background: var(--arp-status-danger-border);
  color: white;
  font-size: var(--bulma-size-normal);
}
