/*
 * Alert banner related styling.
 */
.alert-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 16px;
  position: relative;
}

.alert-success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #10b981;
}

.alert-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.alert-icon {
  margin-right: 6px;
  margin-top: 2px;
}

.alert-icon svg {
  width: 18px;
  height: 18px;
}

.alert-title {
  font-weight: bold;
  display: block;
}

.alert-description {
  margin-top: 4px;
  margin-right: 15px;
}

.alert-close {
  position: absolute;
  top: 3px;
  right: 3px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: inherit;
  line-height: 1;
}

