/* rb-report.css : 違反報告（目立たないリンク + モーダル） */

.rb-reportLink{
  display:inline-block;
  margin-left:10px;
  font-size:12px;
  line-height:1;
  color:#888;
  text-decoration:none;
  cursor:pointer;
}
.rb-reportLink:hover{
  color:#555;
  text-decoration:underline;
}

/* modal */
.rb-reportModal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.rb-reportModal.is-open{ display:block; }
.rb-reportModal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}
.rb-reportModal__panel{
  position:relative;
  width:min(520px, calc(100% - 24px));
  margin:80px auto 0;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  padding:18px 18px 16px;
}
.rb-reportModal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:34px;
  height:34px;
  border:none;
  background:transparent;
  font-size:22px;
  line-height:34px;
  cursor:pointer;
  color:#777;
}
.rb-reportModal__head{
  font-size:16px;
  font-weight:700;
  margin:0 0 12px;
}
.rb-reportModal__row{ margin:0 0 12px; }
.rb-reportModal__label{
  display:block;
  font-size:12px;
  color:#666;
  margin:0 0 6px;
}
.rb-reportModal__select{
  width:100%;
  height:38px;
  border:1px solid #ddd;
  border-radius:8px;
  padding:0 10px;
  background:#fff;
}
.rb-reportModal__memo{
  width:100%;
  border:1px solid #ddd;
  border-radius:8px;
  padding:10px;
  resize:vertical;
}
.rb-reportModal__actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:10px;
}
.rb-reportModal__btnCancel{
  background:#eee;
  color:#333;
}
.rb-reportModal__btnOk{
  background:#f28b00;
  color:#fff;
}
