.emoji-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 14px;
  padding: 10px;
  border: 1px solid #244b68;
  background: #030d1b;
}
.emoji-picker button {
  width: 38px;
  height: 38px;
  border: 1px solid #315d85;
  border-radius: 5px;
  background: #0a1d34;
  color: white;
  font-size: 21px;
  cursor: pointer;
  transition: .15s;
}
.emoji-picker button:hover { transform: scale(1.15); border-color: #49e4ff; background: #123658; }
.moderator-form { margin-top: 22px; padding-top: 18px; border-top: 1px solid #264e6d; }
.permission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
.check { display: flex; align-items: center; gap: 9px; padding: 10px; border: 1px solid #264e6d; background: #061426; }
.check input { width: auto; margin: 0; }
@media (max-width: 650px) { .permission-grid { grid-template-columns: 1fr; } }
