    body {
      background: #111;
      color: #eee;
      font-family: monospace;
      padding: 20px;
      width: 800px;
      margin: 10px auto 0;
    }
    
/* Back button*/
.hover-container {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  color: white;
}

.hover-link {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.show-me {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin-left: 3px;
}

.hover-link:hover ~ .show-me {
  opacity: 1;
  visibility: visible;
}
    
    h1 {
      margin-top: 0;
    }

    form {
      margin-bottom: 40px;
    }

    .c-inputWrapper {
      margin-bottom: 10px;
    }

    label {
      display: block;
      margin-bottom: 4px;
      color: #aaa;
    }

    input[type="text"],
    input[type="url"],
    textarea {
      width: 100%;
      padding: 5px;
      font-family: monospace;
      background: #222;
      border: 1px solid #444;
      color: #eee;
      resize: none;
    }

    input[type="submit"] {
      background: #66ff66;
      border: none;
      padding: 6px 20px;
      cursor: pointer;
      font-weight: bold;
      margin-top: 10px;
    }

    .bug {
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 1px dashed #444;
    }

    .bug a {
      color: #66ff66;
    }

    .bug time {
      color: #999;
      font-size: 0.8em;
    }
    
    .reply {
      margin-left: 20px;
      padding: 10px;
      border-left: 2px solid #444;
      background: #1a1a1a;
      margin-top: 10px;
    }
    
    .reply-button {
      background: #336633;
      border: none;
      padding: 4px 12px;
      cursor: pointer;
      color: white;
      font-size: 0.8em;
    }
    
    .reply-indicator {
      font-size: 0.8em;
      color: #66ff66;
      margin-bottom: 5px;
    }
    
    .cancel-reply {
      color: #ff6666;
      margin-left: 10px;
      cursor: pointer;
      text-decoration: underline;
    }
    
    #reply-status {
      display: none;
      padding: 5px;
      background: #333;
      margin-bottom: 10px;
    }
    
    .hide-replies {
  display: none;
}

.show-replies-button {
  background: #336633;
  border: none;
  padding: 4px 12px;
  cursor: pointer;
  color: white;
  font-size: 0.8em;
  margin-left: 10px;
}

.reply-count {
  color: #999;
  font-size: 0.8em;
}
 
.bug p,
.reply p {
  max-height: 60px;
  overflow-y: auto;
  padding-right: 5px; /* Add a little space for the scrollbar */
/*  margin-bottom: 5px; Adjust bottom margin */
  /* Scrollbar appearance on WebKit browsers*/
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #555 #222; /* Firefox: thumb track */
}

/* Style scrollbar for WebKit (Chrome, Safari, Edge) */
.bug p::-webkit-scrollbar,
.reply p::-webkit-scrollbar {
  width: 6px;
}

.bug p::-webkit-scrollbar-track,
.reply p::-webkit-scrollbar-track {
  background: #222;
}

.bug p::-webkit-scrollbar-thumb,
.reply p::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 3px;
}    
/* End style scrollbar for WebKit */
    
.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.pagination-controls button {
  background: #333;
  color: #eee;
  border: 1px solid #444;
  padding: 5px 12px;
  cursor: pointer;
  font-family: monospace;
}

.pagination-controls button:hover:not([disabled]) {
  background: #444;
}

.pagination-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  color: #999;
  font-size: 0.9em;
}  
    
.url-wrapper {
  display: flex;
  align-items: center;
  background: #222;
  border: 1px solid #444;
  color: #eee;
  width: 100%;
}

.url-prefix {
  padding: 5px;
  user-select: none;
  color: #aaa;
}

.url-wrapper input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  color: #eee;
  padding: 5px;
  font-family: monospace;
}

.url-wrapper input[type="text"]:focus {
  outline: none;
}