#toast-notification {
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: fixed;
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    background-color: #d1fae5;
    color: #065f46;
    border-radius: 6px;
    z-index: 50;
}

#toast-notification.translate-y-full {
    transform: translateY(100%);
    opacity: 0;
}

.email-copy {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.2s;
}

.email-copy:hover {
    text-decoration: underline;
}

.email-copy .ml-1 {
    opacity: 0.7;
    font-size: 0.8em;
}

/* Custom Toast Notification System */
.custom-toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.custom-toast {
  min-width: 300px;
  max-width: 450px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.custom-toast-icon {
  margin-right: 12px;
  flex-shrink: 0;
}

.custom-toast-content {
  flex-grow: 1;
}

.custom-toast-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.custom-toast-message {
  font-size: 14px;
}

.custom-toast-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  gap: 8px;
}

.custom-toast-btn {
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
}

/* Toast types */
.custom-toast-info {
  background-color: #e6f7ff;
  border-left: 4px solid var(--secondary);
}

.custom-toast-success {
  background-color: #f6ffed;
  border-left: 4px solid var(--primary);
}

.custom-toast-warning {
  background-color: #fffbe6;
  border-left: 4px solid #faad14;
}

.custom-toast-error {
  background-color: #fff2f0;
  border-left: 4px solid #ff4d4f;
}

/* Toast animations */
@keyframes toast-fadeout {
  from { opacity: 1; }
  to { opacity: 0; transform: translateY(10px); }
}

.toast-fadeout {
  animation: toast-fadeout 0.5s ease forwards;
}
