.comment {
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
  color: #fff;
  width: 75%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #333;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.comment-author-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.comment-delete {
  background-image: url("../media/delete-icon.png");
  height: 24px;
  width: 24px;
}

.comment-text {
  color: #ccc;
  font-size: 14px;
}

.comment-date {
  color: #666;
  font-size: 12px;
  margin-top: 8px;
}

.page-controls {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 80px;
}

.page-controls > button {
  background: transparent;
  border: 1px solid #333;
  color: #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
}
.page-controls > button:hover {
  color: #fff;
  border-color: #666;
}
.page-controls > button:disabled {
  background: transparent;
  border-color: #222;
  color: #444;
  cursor: not-allowed;
}
