body {
    background-color: #0c0c0c;
    color: #e5e5e5;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    color: #a9a9a9;
  }
  
  a {
    color: #00ccff;
  }
  
  table {
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  td, th {
    border: 1px solid #4d4d4d;
    padding: 5px;
  }
  
  th {
    background-color: #1c1c1c;
    color: #a9a9a9;
  }
  
  button, input[type="submit"], input[type="reset"] {
    background-color: #c5c5c5;
    color: #000000;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    font-size: 14px;
    cursor: pointer;
  }
  
  button:hover, input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: #f1f1f1;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    color: #a9a9a9;
  }
  
  .message {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #4d4d4d;
    background-color: #191919;
  }
  
  form {
    margin-bottom: 20px;
  }
  
  input[type="text"], input[type="password"], textarea {
    background-color: #c5c5c5;
    border: none;
    padding: 5px;
    font-size: 14px;
    color: #000000;
    width: 100%;
  }
  
  input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    outline: none;
    background-color: #f1f1f1;
  }
  
  input[type="hidden"] {
    display: none;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #0c0c0c;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #a9a9a9;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #f1f1f1;
  }
  