/* report.css */
/* ====== 纠错按钮与提示样式 ====== */
.sg-report-btn {
  position: fixed;
  right: 16px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform .14s ease, opacity .14s ease;
  opacity: 0.95;
  user-select: none;
  border: none;
}

.sg-report-btn:hover,
.sg-report-btn:focus {
  transform: translateY(-50%) scale(1.03);
  opacity: 1;
  outline: none;
}

.sg-report-btn .sg-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-weight: 700;
}

.sg-report-label {
  display: none;
  margin-left: 8px;
  white-space: nowrap;
  font-size: 13px;
}

.sg-report-toast {
  position: fixed;
  right: 84px;
  top: 70%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}
.sg-report-toast.show {
  opacity: 1;
  transform: translateY(-50%) translateX(-6px);
}

.sg-report-btn:focus {
  box-shadow: 0 0 0 3px rgba(0,123,255,0.18);
}

@media (max-width: 220px) {
  .sg-report-btn {
    display: none;
  }
}
