/* ========== Toast notification ========== */
.toast-notify {
  position: fixed;
  z-index: 10050;
  left: 50%;
  bottom: 28px;
  width: min(440px, calc(100% - 32px));
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.toast-notify.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast-notify__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 40px rgba(43, 34, 35, 0.14);
  color: #2b2223;
}

.toast-notify__icon {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.toast-notify__icon--success {
  background: rgba(0, 145, 17, 0.1);
  color: #009111;
}

.toast-notify__icon--error {
  background: rgba(176, 74, 74, 0.12);
  color: #b04a4a;
}

.toast-notify__icon--warning {
  background: rgba(176, 141, 47, 0.12);
  color: #b08d2f;
}

.toast-notify__icon--info {
  background: rgba(100, 70, 247, 0.1);
  color: #6446f7;
}

.toast-notify--success .toast-notify__icon--success,
.toast-notify--error .toast-notify__icon--error,
.toast-notify--warning .toast-notify__icon--warning,
.toast-notify--info .toast-notify__icon--info {
  display: flex;
}

.toast-notify__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #2b2223;
  margin: 0;
  word-break: break-word;
}

.toast-notify__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  color: #8a8586;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.toast-notify__close:hover {
  background: #f3f4f6;
  color: #2b2223;
}

.toast-notify__close:focus-visible {
  outline: 2px solid #6446f7;
  outline-offset: 2px;
}
/* ========== /Toast notification ========== */
