body {
  line-height: 1.5;

  text-align: left;
  max-width: 800px;
  /* Adjust this value as needed */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  /* Optional: adds some space on the left */
  padding-right: 20px;
  /* Optional: adds some space on the right */

  background: black;
  color: #e3e3e3;
  font-family: 'Courier New', Courier, monospace;
}

html {
  height: 100%;
  margin: 0;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/*
header {
  border-bottom: 1px solid #222;
  margin-bottom: 1rem;
}

footer {
  border-top: 1px solid #222;
  margin-top: 1rem;
}
*/
a {
  text-decoration: none;
  color: #00ff00;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  background-color: #00ff00;
  color: black;
}

.center-box {
  color: #00ff00;
  border: 2px solid #00ff00;
  padding: 10px 20px;
  text-align: center;
}

.footer {
  width: 100%;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.footer a {
  padding: 20px;
}

h1 {
  border-bottom: 1px solid #00ff00; /* 2px thick solid black line */
  width: 100%; /* Ensures the line spans the full width */
}

h2 {
  border-bottom: 1px solid #00ff00; /* 2px thick solid black line */
  width: 100%; /* Ensures the line spans the full width */
}

h3 {
  border-bottom: 1px solid #00ff00; /* 2px thick solid black line */
  width: 100%; /* Ensures the line spans the full width */
}

nav ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  justify-content: center;

}

nav li {
  margin-right: 20px; /* Adds some space between items */
}

nav li:last-child {
  margin-right: 0; /* Removes margin from the last item */
}



/* Paginator Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

/* Paginator Items */
.pagination li {
    margin: 0 0.3rem;
}

/* Paginator Links */
.pagination a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #e3e3e3;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover & Focus */
.pagination a:hover,
.pagination a:focus {
    background-color: #00ff00;
    color: #000000;
    border-color: #00ff00;
}

/* Active Page */
.pagination .active a {
    background-color: #00ff00;
    color: #000000;
    border-color: #00ff00;
    pointer-events: none;
    cursor: default;
}

/* Disabled (for example previous/next when not applicable) */
.pagination .disabled a {
    color: #616161;
    border-color: #ddd;
    pointer-events: none;
    cursor: not-allowed;
}

/* Base table styling */
table {
  width: 100%;
  border-collapse: collapse;
  color: #e0e0e0; /* light gray text for contrast */
  font-size: 16px;
}

/* Header row */
thead th {
  background-color: #1a1a1a; /* slightly lighter than black */
  color: #ffffff;
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #444; /* subtle bottom border */
}

/* Table body rows */
tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #333; /* subtle row divider */
}

/* Optional: Zebra striping for better row distinction */
tbody tr:nth-child(even) {
  background-color: #121212; /* very dark gray */
}

img {
  width: 100%;
  max-width: 800px;
  height: auto;
}