.objava-act.js-toggle-comments {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}

.objava-comments {
  margin-top: 12px;
}

.comments-box {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #e6e8f0;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.comment-item {
  display: flex;
  gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px solid #f1f5f9;
}

.comment-item:last-child {
  border-bottom: 0;
}

.comment-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-meta {
  font-family: var(--global-font-family-1);
  font-size: 10px;
  color: #7b8190;
  margin-bottom: 4px;
}

.comment-name {
  font-weight: 700;
  color: #281B1B;
  font-size: 13px;
}

.comment-text {
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  white-space: pre-wrap;
  font-family: var(--global-font-family-1);
}

.no-comments {
  color: #0000009E;
  font-size: 14px;
  font-family: var(--global-font-family-1);
}

.err {
  color: #EE1D23;
}

.objava-comment-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.objava-comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e6e8f0;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-family: var(--global-font-family-1);
}

.comment-submit {
  align-self: flex-end;
  background: #EE1D23;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--global-font-family-1);
}