.toast-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index:1000;
}


.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #e6f4ea;
  border-left: 4px solid #34a853;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  animation:  fadeIn 0.5s ease forwards;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 12px;
}

.toast.error {
  background-color: #fce8e6;
  border-left-color: #ea4335;
}

.toast .icon {
  flex-shrink: 0;
}

.toast .text .title {
  font-size: 16px;
  font-weight: 600;
  color: #202124;
}

.toast .text .message {
  font-size: 14px;
  color: #5f6368;
}

.toast .close-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  margin-left: auto;
  cursor: pointer;
  color: #5f6368;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
