#toast-container {
  position: fixed !important;
  top: 10px !important;
  left: 50%; /* Centrado horizontalmente */
  transform: translateX(-50%);
  z-index: 999999999999999999999 !important;
  height: auto !important;
    max-width: 350px !important;
}

.toast {
  max-width: 380px !important;
  width: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  padding: 10px;
  border-radius: 5px !important;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  opacity: 1;
  transition: opacity 0.5s !important;
  z-index: 99999999999999
}

.toast-container{
    display: flex;
    align-items: center;
}
.toast-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.toast-icon i{
    font-size: 30px;
    line-height: 40px;
    text-align: center;
}
.toast-message {
  flex: 1;
  padding-left: 10px;
  margin: 0;

}
.toast.show {
  opacity: 1; /* Set to 1 to show the toast */
}

.toast-success {
  background-color: #d4edda !important;
  color: #155724 !important;
}
.toast-success .toast-icon{
    background-color: #c3e6cb !important;
}

.toast-error {
  background-color: #f8d7da !important;
  color: #721c24 !important;
}
.toast-error .toast-icon{
    background-color: #f5c6cb !important;
}
.toast-warning {
  background-color: #fff3cd !important;
  color: #856404 !important;
}
.toast-warning .toast-icon{
    background-color: #ffeeba !important;
}

.toast-info {
  background-color: #d1ecf1 !important;
  color: #0c5460 !important;
}
.toast-info .toast-icon{
    background-color: #bee5eb !important;
}

.toast-msg{
    background-color: #d1ecf1 !important;
    color: #0c5460 !important;
}
.toast-msg .toast-icon{
    background-color: #bee5eb !important;
}

