.tiq-toast-region {
  display: grid;
  gap: 10px;
  max-width: min(420px, calc(100vw - 24px));
  position: fixed;
  right: 16px;
  top: 82px;
  z-index: 4000;
}

.tiq-toast {
  background: #ffffff;
  border: 1px solid #d9e3ec;
  border-left: 4px solid #17699e;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(13, 44, 84, 0.16);
  color: #162536;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
}

.tiq-toast[data-tone="success"] {
  border-left-color: #1f7a6d;
}

.tiq-toast[data-tone="warning"] {
  border-left-color: #d59b2d;
}

.tiq-toast[data-tone="danger"] {
  border-left-color: #b94a48;
}

.tiq-toast-title {
  color: #0d2c54;
  font-size: 0.88rem;
  font-weight: 800;
}

.tiq-toast-message {
  color: #5d6b7c;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .tiq-toast-region {
    left: 12px;
    right: 12px;
    top: 74px;
  }
}
