@charset "UTF-8";
/* Contêiner onde os toasts serão exibidos */
/* line 3, app/assets/stylesheets/toast.scss */
#toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Estilo base para todos os toasts */
/* line 14, app/assets/stylesheets/toast.scss */
.toast {
  display: flex;
  align-items: center;
  min-width: 250px;
  max-width: 350px;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Ícones dentro do toast */
/* line 30, app/assets/stylesheets/toast.scss */
.toast i {
  margin-right: 8px;
  font-size: 18px;
}

/* Botão de fechar (X) */
/* line 36, app/assets/stylesheets/toast.scss */
.toast-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-left: auto;
  cursor: pointer;
}

/* Cores para cada tipo de mensagem */
/* line 47, app/assets/stylesheets/toast.scss */
.toast-success {
  background-color: #28a745;
  /* Verde */
}

/* line 51, app/assets/stylesheets/toast.scss */
.toast-error {
  background-color: #dc3545;
  /* Vermelho */
}

/* line 55, app/assets/stylesheets/toast.scss */
.toast-warning {
  background-color: #ffc107;
  /* Amarelo */
  color: #333;
}

/* line 60, app/assets/stylesheets/toast.scss */
.toast-warning .toast-close {
  color: #333;
}
