.comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.comments-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.input-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.input-comment {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.comment-char-counter {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.login-to-comment {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1rem;
}
.login-to-comment p {
  color: #c2c2c2;
  font-weight: 500;
}

.comments-list {
  margin-top: 1rem;
}

.comment-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(190, 169, 255, 0.1764705882);
}

.avatar-comment {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.user-data {
  font-weight: bold;
  color: #adadad;
  margin: 0;
}

.comment-date {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}

.comment-text {
  margin: 0;
  line-height: 1.5;
  color: #fff;
  word-break: break-all;
  white-space: normal;
}

.no-comments, .loading-comments, .error-message {
  text-align: center;
  padding: 2rem;
  color: #999;
}

.error-message {
  color: #e74c3c;
}

.loading-comments {
  color: #666;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}/*# sourceMappingURL=comments.css.map */