body::before {
    background: url("../img/Comment_Backdrop.jpg") no-repeat center center;
    background-size: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

.btn-small, .btn-cancel {
  display: block;
  width: 100%;
  background-color: #004a8c;
  color: white;
  padding: 8px;
  margin: 10px 0px 10px 0px;
  border: none;
  border-radius: 15px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-small:hover, .btn-cancel:hover {
    background-color: #2196F3;
}

textarea#comments {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
}

body.dark-mode textarea#comments {
    border: 1px solid #333;
}


