Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; }

.mw-page-title-main .mw-namespace {
    display: none;
}

.page-header h1.firstHeading {
    display: none;
}

#ca-nstab-main { display: none !important; }

body.mw-anonuser #ca-history {
    display: none !important;
}

body.mw-anonuser #ca-view {
    display: none !important;
}

body.mw-anonuser #ca-viewsource {
    display: none !important;
}
body.mw-anonuser #ca-login {
    display: none !important;
}

/* Apply alternating colors, padding, rounded corners, and Georgia font to all tables */
table.wikitable {
    border-collapse: separate;  /* Allows border-radius to work */
    border: 4px solid #2b2b2b;  /* Darker gray border */
    border-radius: 8px;  /* Rounded corners for the entire table */
    overflow: hidden;  /* Ensures content respects rounded corners */
    font-family: "Georgia", serif;  /* Georgia font for the entire table */
    color: #c1c1c1;  /* Default text color for table */
    background-color: #4c4c4c;  /* Default background color for table */
    border-spacing: 0;  /* Ensures no gaps between cells */
}

/* Add extra padding to all table cells (header and data) */
table.wikitable th, table.wikitable td {
    padding: 12px 16px;  /* 12px headroom (top/bottom), 16px side room (left/right) */
    border: 1px solid #666666;  /* Slightly darker gray border for cells */
    color: #c1c1c1;  /* Text color for table data cells */
    font-size: 1.15em;  /* Increased font size for table content */
}

/* Apply alternating row colors */
table.wikitable tr:nth-child(even) {
    background-color: #333333;  /* Darker gray for even rows */
}

table.wikitable tr:nth-child(odd) {
    background-color: #4d4d4d;  /* Dark gray for odd rows */
}

/* Style the table headers */
table.wikitable th {
    background-color: #595959;  /* Header background color */
    color: #ffffff;  /* White text for header contrast */
    font-weight: bold;  /* Bold the header text */
    font-size: 1.3em;  /* Increased font size for headers */
    font-family: "Georgia", serif;  /* Apply Georgia font to headers */
    border: 1px solid #666666;  /* Darker gray border for header cells */
}

/* Only round the top-left and top-right corners of the first row */
table.wikitable tr:first-child th:first-child {
    border-top-left-radius: 8px;  /* Top-left rounded corner */
}

table.wikitable tr:first-child th:last-child {
    border-top-right-radius: 8px;  /* Top-right rounded corner */
}

/* Only round the bottom-left and bottom-right corners of the last row */
table.wikitable tr:last-child td:first-child {
    border-bottom-left-radius: 8px;  /* Bottom-left rounded corner */
}

table.wikitable tr:last-child td:last-child {
    border-bottom-right-radius: 8px;  /* Bottom-right rounded corner */
}

/* Keep the styling for mw_metadata tables */
table.mw_metadata td, table.mw_metadata th {
    color: #c1c1c1;
    background-color: #4c4c4c;
    border-color: #666666;
}

table.mw_metadata th {
    background-color: #595959;
}


/* Tooltip table styling */
.tooltip-table {
  border-collapse: collapse;
  width: auto; /* Adjust width to fit content if needed */
}

.tooltip-table td {
  position: relative;
  text-align: center; /* Center content horizontally */
  vertical-align: middle; /* Center content vertically */
  padding: 0; /* Remove padding around cells */
  border: 1px solid black; /* Optional: keeps table borders visible */
}

/* Tooltip styling */
.tooltip-cell .tooltip-text {
  visibility: hidden;
  width: 350px; /* Increase width for more space */
  background-color: #333;
  color: #fff;
  text-align: left; /* Align text to the left */
  border-radius: 5px;
  padding: 10px; /* Increase padding for readability */
  position: absolute;
  z-index: 1;
  top: 105%; /* Position the tooltip directly below the image */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: normal; /* Allows text to wrap within the tooltip */
  box-sizing: border-box; /* Ensures padding doesn’t cause overflow */
  line-height: 1.5; /* Space lines slightly for readability */
}

.tooltip-cell:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Image styling to remove any extra space */
.tooltip-cell img {
  display: inline-block;
  margin: 0 auto; /* Center image horizontally */
  padding: 0; /* Ensures no padding around image */
  width: 50px; /* Set image size if not specified directly in MediaWiki markup */
}