.tm-create-guard-notice {
  position: fixed;
  left: 50%;
  top: 120px;
  z-index: 100002;
  display: none;
  width: min(420px, calc(100vw - 28px));
  padding: 13px 14px;
  border: 1px solid rgba(24, 198, 212, 0.30);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 198, 212, 0.16), transparent 38%),
    rgba(7, 18, 37, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  color: #e5f7ff;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.tm-create-guard-notice.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.tm-create-guard-notice::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: rgba(7, 18, 37, 0.98);
  border-right: 1px solid rgba(24, 198, 212, 0.26);
  border-bottom: 1px solid rgba(24, 198, 212, 0.26);
  transform: translateX(-50%) rotate(45deg);
}

.tm-create-guard-notice strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
}

.tm-create-guard-notice p {
  margin: 0 0 10px;
  color: #9fb6d9;
}

.tm-create-guard-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tm-create-guard-actions button {
  min-height: 36px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.tm-create-guard-keep {
  background: rgba(148, 163, 184, 0.14);
  color: #dbeafe;
}

.tm-create-guard-new {
  background: linear-gradient(135deg, #18d6e3, #3b82f6);
  color: white;
}

.tm-create-guard-msg {
  margin-top: 9px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
}

.tm-create-guard-msg.error {
  color: #fca5a5;
}

.tm-create-guard-msg.success {
  color: #86efac;
}

@media (max-width: 520px) {
  .tm-create-guard-notice {
    width: calc(100vw - 24px);
    max-width: 360px;
  }

  .tm-create-guard-actions button {
    flex: 1 1 auto;
  }
}
