/* src/styles.scss */
* html,
body {
  background-color: #1a1310;
  color: white;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.toast-center {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: fixed !important;
  z-index: 9999 !important;
  text-align: center;
  color: white;
}
.toast-center .toast {
  font-size: 1rem;
  font-weight: 500;
  box-shadow: none;
  text-align: center;
  border: 1px solid transparent;
  color: white;
}
.toast-center .toast-success {
  border-radius: 0.375rem;
  padding: 2rem;
  background-color: #1c1c1c;
  color: white;
  border-color: #1c1c1c;
}
.toast-center .toast-error {
  border-radius: 0.375rem;
  padding: 2rem;
  background-color: #1c1c1c;
  color: white;
  border-color: #1c1c1c;
}
.toast-center .toast-info {
  border-radius: 0.375rem;
  padding: 2rem;
  background-color: #1c1c1c;
  color: white;
  border-color: #1c1c1c;
}
.toast-center .toast-warning {
  border-radius: 0.375rem;
  padding: 2rem;
  background-color: #1c1c1c;
  color: white;
  border-color: #1c1c1c;
}

/* angular:styles/global:styles */
