/* ===========================================
   SNACKBAR.CSS - Notificações globais
   Neria App - Estilos de Snackbar
   =========================================== */

.snackbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background-color: rgba(255, 0, 0, 0.54);
  color: white;
  padding: 21px 24px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  width: 350px;
  max-width: 90%;
  text-align: center;
}

.snackbar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Mobile: 90% da tela */
@media screen and (max-width: 430px) {
  .snackbar {
    width: 90%;
    max-width: none;
  }
}

/* Snackbar de sucesso */
.snackbar.success {
  background-color: white;
  border: 0.3vh solid #28a745;
  color: #28a745;
}
