.notice,
.alert {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1000;
  display: none;
}

.notice .notification,
.alert .notification {
  padding: 20px;
  background-color: white;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.notice .notification p,
.alert .notification p {
  margin: 0;
  color: white;
}

.alert .notification {
  background-color: #dc2626;
}

.notice .notification {
  background-color: #166534;
}