/* Wrapper - full width */
.comments-wrapper {
  width: 100%;
  margin: 40px 0;
  padding: 20px 40px; /* λίγο αέρα δεξιά-αριστερά */
  background: #121212;
  color: #eee;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Title */
.comments-wrapper h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #ff9800;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}

/* Each comment block */
.comment {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #333;
}
.comment:last-child {
  border-bottom: none;
}

/* Avatar */
.comment .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a2a2a;
  border: 2px solid #444;
  flex-shrink: 0;
}

/* Content */
.comment-body {
  flex: 1;
}
.comment-meta {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.comment-meta .username {
  font-weight: bold;
  color: #42a5f5; /* μπλε */
  margin-right: 8px;
}
.comment-meta .date {
  color: #aaa;
}
.comment-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-top: 2px;
}

/* Add new comment form */
.comments-wrapper h3 {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #42a5f5;
  margin-bottom: 10px;
}

.comment-box {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #1e1e1e;
  color: #eee;
  font-size: 0.95rem;
  font-family: inherit;
}
.comment-box:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 0 6px rgba(255,152,0,0.5);
}

/* Submit button */
.comment-btn {
  margin-top: 12px;
  background: linear-gradient(135deg,#ff9800,#ff5722);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.comment-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
