/* HTML comment box */

#HCB_comment_box {
    max-width: 47rem;
    margin: 2rem auto;
    padding-top: 2rem;
    font-family: "DOS", monospace !important;
  }
  #HCB_comment_box > h3 {
    display: none;
  }
  label#hcb_file_label a.btn-secondary,
  .admin-link,
  .home-desc,
  #hcb_msg,
  .hcb-like {
    display: none;
  }
  .hcb-wrapper-half {
    display: inline-block;
    width: 100%;
    max-width: 200px;
    vertical-align: text-top !important;
  }
  .hcb-wrapper-half input {
    width: 95%;
    height: 2rem;
    padding: 0.5rem !important;
    vertical-align: text-top;
  }
  #HCB_comment_box textarea,
  .hcb-wrapper-half input {
    font-family: "DOS", monospace !important;
    background: white;
    border: 2px inset white;
  }
  textarea {
    resize: vertical;
  }
  #HCB_comment_box blockquote {
    border: none;
    padding: 0 0 0 2px !important ;
  }
  #HCB_comment_box .comment {
    border: 1px dotted;
    padding: 0.5rem 1rem 1rem 1rem;
    margin: 1rem auto !important;
  }
  #HCB_comment_box .comment .comment {
    margin-bottom: 0 !important;
  }
  #HCB_comment_box .hcb-comment-body {
    font-size: 0.9rem !important;
  }
  .hcb-comment-tb button {
    color: teal !important;
    font-family: "DOS", monospace !important;
    font-weight: normal !important;
    padding: 2px !important;
  }
  .hcb-comment-tb button:hover,
  .hcb-comment-tb button:focus {
    color: white !important;
    background-color: teal !important;
  }
  #HCB_comment_box .author-name {
    font-weight: normal;
    letter-spacing: 4px;
  }
  #HCB_comment_box .author {
    margin-right: -5px !important;
  }
  #hcb_submit {
    padding: 0.5rem;
    color: black !important;
    background: whitesmoke !important;
    font-family: "DOS", monospace !important;
    border: 2px outset whitesmoke !important;
    cursor: pointer;
  }
  #hcb_submit:hover {
    text-decoration: underline !important;
  }
  #hcb_submit:active {
    border: 2px inset whitesmoke !important;
    padding: 0.6rem 0.4rem 0.4rem 0.6rem;
  }
  
  @media (prefers-color-scheme: dark) {
    #HCB_comment_box textarea,
    .hcb-wrapper-half input {
      color: white !important;
      background: darkslategrey;
      border: 2px inset darkslategrey;
    }
    #HCB_comment_box textarea::placeholder,
    .hcb-wrapper-half input::placeholder {
      color: lightgrey !important;
    }
    #hcb_submit {
      color: white !important;
      background: #4c5c5c !important;
      border: 2px outset #4c5c5c !important;
    }
    #hcb_submit:active {
      border: 2px inset #4c5c5c !important;
    }
    .hcb-comment-tb button {
      color: #b2d7c1 !important;
    }
    .hcb-comment-tb button:hover,
    .hcb-comment-tb button:focus {
      color: darkslategrey !important;
      background-color: #b2d7c1 !important;
    }
  }
  