/* General page styles */
body.cluttered-page {
    background-color: black;
    font-family: "Comic Sans MS", cursive, sans-serif;
    color: lime;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

#site-container {
    width: 800px;
    min-height: 100vh; /* at least full viewport height */
    margin: 0;
    padding: 10px;
    background-color: black;
}

/* Top banner + mascot */
.top-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 0;
    width: 800px;
}

#banner, #mascot {
    margin: 0;
    vertical-align: middle;
    border: none;
}

/* Buttons below banner, left-aligned */
.button-container {
  margin: 5px 0 10px 0;
}

.button-container .nav-button {
  display: inline-block;
  margin-right: 5px;
  background-color: #c0c0c0;
  color: black;
  font-weight: bold;
  font-family: "Courier New", monospace;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  border: 2px outset #fff;
  padding: 2px 6px;
}

.button-container .nav-button:hover {
  background-color: #999999;
  border: 2px inset #fff;
}

/* Layout wrapper for table + marquee */
.layout-wrapper {
  position: relative;
}

/* Table fixed layout */
table {
  table-layout: fixed;
  width: auto;
  border-collapse: collapse;
}

/* Columns */
.left-col {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  background-color: black;
  padding: 10px;
  position: relative;
  z-index: 10;
}

/* Divider GIF */
.gif-divider {
  width: 20px;
  background-image: url("divider.gif");
  background-repeat: repeat-y;
}

/* Main content (fixed width) */
#main-content {
    position: relative; 
    width: 800px;
    min-height: auto;  /* make tall enough to contain all absolute boxes */
    padding: 10px;
    background-image: url("main.jpg");
    background-size: cover;
    background-position: center;
}
.box {
    position: relative;
    width: 100px;        /* small box */
    height: 80px;
    background-color: #111;
    border: 2px white;
    color: yellow;
    padding: 5px;
    font-family: "Courier New", monospace;
    font-size: 12px;
    text-align: center;
}


/* Content sections inside main */
.section {
  padding: 5px;
  margin: 5px 0;
  background-color: rgba(0,0,0,0.6); /* optional semi-transparent overlay */
}

/* Marquee above main content, behind left column */
.nitwit-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;  /* fixed width */
  margin: 0 auto; /* center */
  height: 15px;
  background: white;
  color: black;
  border: 2px white;
  font-family: "Courier New", monospace;
  font-size: 12px;
  padding: 3px 6px;
  z-index: 5;
}
