.flash-container {
  position: fixed;
  top: 0.75rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
}

.flash {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  animation: slideIn 0.3s ease-out;
}

.flash-notice {
  background-color: #ecfdf5;
  color: #065f46;
  border-bottom: 3px solid #52b997;
}

.flash-alert {
  background-color: #fef2f2;
  color: #991b1b;
  border-bottom: 3px solid #a63131;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
