#q-snackbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 55px;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 11px;
  width: 300px;
  margin: auto;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: white;
}

#q-snackbar.show {
  display: flex;
}

#q-snackbar span {
  flex: 1;
}

#q-snackbar.error {
  background-color: #f44336;
}

#q-snackbar.info {
  background-color: #2196F3;
}

#q-snackbar.warning {
  background-color: #ff9800;
}

#q-snackbar.success {
  background-color: #4CAF50;
}