.comment {
  background: white;
  margin-bottom: 10px;
}

.comment-title {
  display: flex;
  background-color: #3E517A;
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  color: var(--white);
}

.comment-title h3:first-of-type {
  flex: 1 0 0;
}

.comment-title h3:not(:first-of-type) {
  font-weight: 100;
}

.comment h3,
.comment h4,
.comment p {
  margin: 0;
}

.comment h4 {
  padding: 5px 10px;
}

.comment p {
  padding: 10px;
  border-bottom: 3px solid var(--brown);
}

.pagination {
  display: flex;
  color: var(--white);
}

.disabled {
  background-color: #6b6b7b;
  cursor: not-allowed;
}

.pagination p {
  margin: 0;
  text-align: center;
  font-size: 24px;
  padding: 5px 10px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
}

.pagination a {
  background-color: var(--blue);
  text-decoration: none;
  color: var(--white);
  opacity: 1;
}

.pagination a:hover,
button:hover {
  background-color: #2656b1;
}

.pagination .page-counter {
  background-color: transparent;
  color: black;
  margin: 0 10px;
  flex: 1 0 0;
  border-bottom: none;
}

input,
textarea {
  border: 1px solid black;
  outline: none;
  resize: none;
  margin-bottom: 10px;
  width: 100%;
}

textarea {
  height: 10em;
}

button {
  margin-top: 1em;
  color: var(--white);
  padding: 4px;
  background-color: var(--blue);
  border: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  width: 100%;
  cursor: pointer;
}

.message {
  color: var(--white);
  padding: 5px;
  margin-bottom: 5px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
}

.message.error {
  background-color: #DE3C4B;
}

.message.success {
  background-color: #2d912d;
}

form {
  padding-bottom: 1em;
  border-bottom: 1px solid var(--black);
}