/* Toast notification styles for fattpad */
.fattpad-toast {
  min-width: 220px;
  max-width: 350px;
  margin: 0;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
  transition: opacity 0.25s, transform 0.25s;
}
.fattpad-toast-success {
  background: #4caf50;
}
.fattpad-toast-error {
  background: #f44336;
}
.fattpad-toast-info {
  background: #323232;
}
#fattpad-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2147483647 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
