.comentarios1 {
    border-radius: 10px;
    max-width: 600px;
    margin: 10px auto;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

form#commentForm {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

form#commentForm textarea,
form#commentForm input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

form#commentForm button {
  background-color: #0078d4;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form#commentForm button:hover {
  background-color: #005fa3;
}

#commentsList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comentario {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.comentario img.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.comentario strong {
  font-size: 15px;
  color: #0078d4;
}

.comentario p {
  margin: 4px 0 0;
  font-size: 14px;
}