body {
  font-family: 'Arial';
  font-size: 11pt;
}

.toast-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1111;
}

.toast {
  padding: 16px 12px;
  margin: 6px;
  font-family: 'Arial';
  font-size: 10pt;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  max-width: 256px;
  width: fit-content;
  box-shadow: 0 2px 0 rgba(180, 180, 180, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.toast .icon {
  flex-shrink: 0;
  line-height: 1.4;
}

.toast .text {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.toast .fa {
  font-size: 14pt;
  margin-right: 8px;
}

.toast.success {
  background: #0f5132;
}

.toast.success:not(.fading):hover {
  background: #3a4;
}

.toast.error {
  background: #b00;
}

.toast.error:not(.fading):hover {
  background: #b22;
}
.toast:not(.showing):not(.show) {
  opacity: 1 !important;
}

/* input[type='text'] {
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 4px;
  width: 300px;
}

input[type='button'] {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px;
}

input[type='button']:hover {
  background: #eee;
} */