/* Toast notification styles */
#toast-container {
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  max-width: 100%;
}

.toast-visible {
  opacity: 1;
  transform: translateX(0);
}

.toast-dismissing {
  opacity: 0;
  transform: translateX(100%);
}

.toast-close {
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  #toast-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .toast {
    width: 100%;
  }
}

