/* ===== P7: HIDE/UNHIDE COMMENTS FROM CRS EXPORT ===== */

/* Skriveni komentar je vizualno prigušen u Activity Log-u */
.activity-item-hidden .activity-dot {
  opacity: 0.45;
  background: #aaa !important;
}
.activity-item-hidden .activity-label {
  color: #999;
}
.activity-item-hidden .activity-detail {
  background: #f5f5f5;
  border-left-color: #ddd;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #ccc;
}
.activity-item-hidden .activity-meta { color: #aaa; }

/* "hidden from export" badge unutar label-a */
.hidden-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 7px;
  border-radius: 10px;
  background: #f0f0f0;
  color: #888;
  border: 1px solid #ddd;
  vertical-align: middle;
  white-space: nowrap;
}

/* Hide gumb (siv, diskretan, narančast hover) */
.btn-hide-cmt {
  background: transparent;
  border: 1px solid #ccc;
  color: #999;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  flex-shrink: 0;
}
.btn-hide-cmt:hover {
  background: #fff8e1;
  border-color: #e6a817;
  color: #c88a00;
}

/* Unhide gumb (zeleniji, da je jasno da vraća stvar) */
.btn-unhide-cmt {
  background: transparent;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  flex-shrink: 0;
}
.btn-unhide-cmt:hover {
  background: #e8f5e9;
}
