.notify-container {
  position: fixed;
  top: 5.25rem;
  right: 1.25rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 360px;
  width: calc(100% - 2.5rem);
  pointer-events: none;
}

.notify-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  background: var(--surface);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--brand-primary);
  box-shadow: var(--glass-shadow);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

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

.notify-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.notify-success {
  border-left-color: #18794e;
}
.notify-success .notify-icon {
  color: #18794e;
}

.notify-error {
  border-left-color: #b42318;
}
.notify-error .notify-icon {
  color: #b42318;
}

.notify-info .notify-icon {
  color: var(--brand-primary);
}

.notify-message {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.4;
}

.notify-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
}
.notify-close:hover {
  color: var(--text-main);
}

@media (max-width: 575.98px) {
  .notify-container {
    top: 4.75rem;
    right: 0.75rem;
    left: 0.75rem;
    max-width: none;
    width: auto;
  }
}
