/* Estilos para a seção de comentários */
.comments-section {
  border-top: 1px solid #eee;
  padding: 15px;
  margin-top: 10px;
}

.comment {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment:last-child {
  border-bottom: none;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.comment-user {
  font-weight: bold;
  margin: 0 10px;
}

.comment-time {
  font-size: 0.8rem;
  color: #777;
}

.comment-text {
  margin-left: 40px;
}

.add-comment {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.comment-input {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
}

.post-comment-btn {
  align-self: flex-end;
  padding: 6px 12px;
  background-color: #4267B2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.post-comment-btn:hover {
  background-color: #365899;
}

.no-comments {
  text-align: center;
  color: #777;
  font-style: italic;
  padding: 15px 0;
}

/* Estilo para botão de like quando curtido */
.like-btn.liked {
  color: #ed4956;
}

.avatar.small {
  width: 25px;
  height: 25px;
  font-size: 0.7rem;
}

.avatar.small img {
  width: 25px;
  height: 25px;
}