.compact-comment-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.compact-comment-row {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #0a1713;
  border-bottom: 1px solid var(--line);
}

.compact-comment-row:last-child { border-bottom: 0; }

.compact-comment-row > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 750;
}

.compact-comment-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.compact-comment-actions button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #26463c;
  border-radius: 8px;
  background: #10211c;
  color: #72e9bb;
  font-size: 18px;
  cursor: pointer;
}

.compact-comment-actions button:hover { background: #18342b; }
.compact-comment-actions .danger { color: #ff7f8b !important; background: #2b171b; }

@media (max-width: 620px) {
  .comment-lists-layout { gap: 12px; }
  .compact-comment-row { padding: 9px 10px; }
  .compact-comment-actions button { width: 32px; height: 32px; }
}

#sideNav .nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  color: #68857b;
}

#sideNav .nav-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#sideNav button:hover .nav-icon,
#sideNav button.active .nav-icon { color: var(--green); }
