/* BR.css — Bug Report modal */
.BR-modal[hidden]{ display:none !important; }
.BR-modal{ position:fixed; inset:0; z-index:9999; }
.BR-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.45); }
.BR-dialog{
  position:relative; max-width:720px; margin:6vh auto; background:#fff; color:#111;
  border-radius:16px; box-shadow:0 10px 40px rgba(0,0,0,.25); padding:16px 16px 12px;
}
.BR-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.BR-title{ font-size:1.125rem; font-weight:700; }
.BR-close{ font-size:1rem; }
.BR-form .GN-form-field{ margin-bottom:12px; }
.BR-actions{ display:flex; gap:8px; justify-content:flex-end; margin-top:8px; }
.BR-feedback{ margin-top:10px; padding:10px 12px; border-radius:12px; background:#f6ffed; border:1px solid #b7eb8f; color:#135200; }
@media (max-width:760px){
  .BR-dialog{ margin:0; inset:0; border-radius:0; height:100%; overflow:auto; }
}
