.alert-services {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.alert-services legend {
  font-weight: 600;
  margin-bottom: 6px;
}
.notification-toolbar,
.notification-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.notification-list {
  display: grid;
  gap: 12px;
}
.notification-card {
  padding: 20px;
}
.notification-card.is-unread {
  box-shadow: inset 3px 0 var(--green, #27594b);
}
.notification-card h2 {
  font-size: 1.2rem;
  margin: 10px 0;
}
.notification-card p {
  margin: 8px 0;
}
.notification-actions {
  margin: 16px 0 0;
}
.notification-dialog {
  border: 0;
  border-radius: 20px;
  padding: 24px;
  width: min(440px, calc(100% - 24px));
  color: inherit;
}
.notification-dialog::backdrop {
  background: rgb(20 40 32 / 35%);
}
.notification-dialog h2 {
  font-size: 1.2rem;
}
.notification-link {
  position: relative;
}
.notification-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 17px;
  padding: 1px 4px;
  font-size: 11px;
  line-height: 15px;
  border-radius: 10px;
  background: #27594b;
  color: #fff;
  text-align: center;
}
.dispatch-progress {
  margin-top: 16px;
  padding: 16px;
}
.dispatch-progress p {
  margin: 8px 0;
}
@media (max-width: 600px) {
  .notification-card {
    padding: 16px;
  }
  .alert-settings {
    padding: 18px;
  }
  .notification-toolbar {
    align-items: flex-start;
  }
  .notification-actions .button {
    flex: 1;
  }
}
@media (max-width: 380px) {
  .header-inner {
    gap: 8px;
  }
  .header-actions {
    gap: 3px;
  }
  .header .brand {
    font-size: 25px;
  }
  .header .brand > svg {
    width: 28px;
    margin-right: 6px;
  }
}
