/* Toastr adaptado a Vuetify */
#toast-container > div {
  font-family: "Roboto", sans-serif;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.toast-success {
  background-color: #4caf50 !important;
}
.toast-error {
  background-color: #f44336 !important;
}
.toast-warning {
  background-color: #fb8c00 !important;
}
.toast-info {
  background-color: #2196f3 !important;
}

.toast-close-button {
  color: #fff;
  opacity: 0.8;
}

#toast-container {
  z-index: 9999 !important;
}
