main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #e7e7e7;
  background: #0a0d11;
  line-height: 1.7;
}
header, footer {
  background: #10151a;
  padding: 1rem 2rem;
}
h1, h2, h3 { color: #00c8ff; }
a { color: #00c8ff; text-decoration: none; }
a:hover { text-decoration: underline; }
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
th, td {
  border: 1px solid #222;
  padding: 0.6em;
  text-align: left;
}
nav a {
  margin-right: 1rem;
}
footer {
  font-size: 0.9em;
  color: #999;
  text-align: center;
  border-top: 1px solid #111;
}
button, .cbutton {
  display: inline-block;
  background: #00c8ff;
  color: #0a0d11;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1em;
}
button:hover, .cbutton:hover {
  background: #5ce1ff;
}
.site-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
}
.site-title img.logo {
  height: 48px;          /* adjust as needed, 24–48 px typically works */
  width: 48px;
  vertical-align: middle;
}
.pagewrap {
  max-width: 900px;   /* limit width on large screens  */
  width: 100%;        /* allow shrinking below 900px   */
  margin: 0 auto;     /* center horizontally           */
  padding: 0 1rem;    /* small side padding            */
}
/* On mobile devices */
@media (max-width: 600px) {
  body {
    padding: 1em;
  }
  ul {
    padding-left: 0;
  }
  .pagewrap {
    padding: 0 0.8rem;
  }
  .cbutton {
    width: 100%;
    font-size: 1.1em;
  }
}

/*@media (max-width: 600px) {
  body {
    background: red !important;
  }
}
*/
