.nhv-report-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(122,92,255,.95), rgba(88,64,210,.95));
  color:#fff;
  font-weight:600;
  font-size:13px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,.25);
}
.nhv-report-btn:hover{ filter:brightness(1.03); }
.nhv-report-btn:active{ transform:translateY(1px); }

/* Top bar popup */
.nhv-report-bar{
  position:fixed;
  left:0;
  right:0;
  top:-220px;
  z-index:999999;
  transition: top .22s ease;
  pointer-events:none;
}
.nhv-report-bar.is-open{
  top:0;
  pointer-events:auto;
}
.nhv-report-inner{
  max-width:980px;
  margin:12px auto 0;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,18,34,.94), rgba(7,8,15,.94));
  box-shadow:0 24px 70px rgba(0,0,0,.55);
  padding:12px;
}
.nhv-report-title{
  color:#fff;
  font-weight:700;
  font-size:14px;
  margin:0 0 8px;
  opacity:.95;
}
.nhv-report-form{
  display:flex;
  gap:10px;
  align-items:center;
}
.nhv-report-form textarea{
  flex:1;
  min-height:44px;
  max-height:120px;
  resize:vertical;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  padding:10px 12px;
  outline:none;
}
.nhv-report-actions{
  display:flex;
  gap:8px;
}
.nhv-report-send,
.nhv-report-close{
  height:40px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  cursor:pointer;
  font-weight:600;
}
.nhv-report-send{
  background: linear-gradient(180deg, rgba(122,92,255,.95), rgba(88,64,210,.95));
  color:#fff;
}
.nhv-report-close{
  background: rgba(255,255,255,.06);
  color:#fff;
}
.nhv-report-msg{
  margin-top:8px;
  font-size:12px;
  color:#d6d8ff;
  opacity:.9;
}

@media (max-width:768px){
  .nhv-report-inner{ margin:10px 10px 0; }
  .nhv-report-form{ flex-direction:column; align-items:stretch; }
  .nhv-report-actions{ justify-content:flex-end; }
}
