/* Nachtgedanken – Reactions & Kommentare (Palette: Anthrazit/Blau/Silber) */
.ng-widget {
  margin: 2.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #dde3ea;
  font-size: 1.05rem;
}

.ng-reactions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ng-thumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #cfd8e2;
  border-radius: 999px;
  background: #ffffff;
  color: #1e2733;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
}
.ng-thumb:hover:not(:disabled) {
  border-color: #4a7ba7;
  background: #eef4fa;
}
.ng-thumb:active:not(:disabled) {
  transform: scale(0.96);
}
.ng-thumb:disabled {
  opacity: 0.7;
  cursor: default;
}
.ng-thumb .ng-icon {
  font-size: 1.2rem;
  line-height: 1;
}
.ng-thumb .ng-count {
  font-weight: 600;
  min-width: 1ch;
}
.ng-up .ng-count {
  color: #2e7d32;
}
.ng-down .ng-count {
  color: #b23b3b;
}

/* Kommentare */
.ng-comments h3 {
  margin-bottom: 1rem;
  color: #1e2733;
}
.ng-comments-list {
  margin-bottom: 1.5rem;
}
.ng-no-comments {
  color: #7b8794;
  font-style: italic;
}
.ng-comment {
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
  background: #f4f7fa;
  border-left: 3px solid #4a7ba7;
  border-radius: 4px;
}
.ng-comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.ng-comment-author {
  font-weight: 700;
  color: #2b3a4a;
}
.ng-comment-date {
  font-size: 0.85rem;
  color: #7b8794;
}
.ng-comment-text {
  white-space: pre-wrap;
  color: #20242b;
}

/* Formular / Login */
.ng-comment-form-area {
  padding: 1rem;
  background: #eceef2;
  border-radius: 6px;
}
.ng-comment-user {
  margin-bottom: 0.6rem;
  color: #2b3a4a;
}
.ng-comment-input {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cfd8e2;
  border-radius: 4px;
  font: inherit;
  resize: vertical;
  box-sizing: border-box;
}
.ng-comment-submit,
.ng-login {
  margin-top: 0.7rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  background: #4a7ba7;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.ng-comment-submit:hover,
.ng-login:hover {
  background: #3b6690;
}
.ng-comment-submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.ng-login-hint {
  color: #2b3a4a;
  margin-bottom: 0.3rem;
}
.ng-logout {
  color: #4a7ba7;
}
