<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------- General Styles ---------- */
body {
  font-family: 'Georgia', serif; 
  line-height: 1.6;
  margin: 20px; 
  background-image: url("images/funky-lines.webp");
  background-repeat: repeat;
  color: #000;
}

/* Links */
a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  font-weight: bold; 
  text-decoration: underline;
}

/* ---------- Shared Heading Styles ---------- */
h1 a {
  color: #333;
  text-decoration: none;
  text-shadow: 2px 2px 12px #FFF;
  padding: 20px;
}

h1 a:hover {
  color: #000;
  text-decoration: underline;
  text-shadow: 2px 2px 12px #FFF;
}

h1 i {
  color: #333;
  text-shadow: 2px 2px 12px #FFF;
  font-size: 1.4em;
  padding-bottom: 3px; 
}

h1 i:hover {
  color: #000;
  font-size: 1.4em;
  padding-bottom: 0px;
}

h2 {
  font-size: 1.5em;
  border-bottom: 2px solid #333;
  margin-bottom: 10px;
  color: #000;
}

.current-page {
  padding: 20px;
  color: #000;
  text-decoration: underline;
  text-shadow: 2px 2px 12px #FFF;
}
.current-page-icon {
  color: #000;
  text-shadow: 2px 2px 12px #FFF;
  border-bottom: 3px solid #000;
  padding-bottom: 0px;
}

/* ---------- Shared Table Styles ---------- */
table {
  width: 100%; 
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: #fff;
}

th {
  font-weight: bold; 
  text-transform: uppercase; 
  color: rgba(255, 255, 240);
  padding: 10px;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #222;
  border: 2px solid #333;
  margin-bottom: 2px;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody tr:hover {
  background-color: #eef6ff;
}

td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
  font-family: 'Times New Roman', Times, serif;
  color: #333;
}

/* Scrollable Table Container */
.scrollable-table-container {
  max-height: 770px;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

/* Force Scrollbar Visibility for WebKit Browsers */
.scrollable-table-container::-webkit-scrollbar {
  width: 5px;
}
.scrollable-table-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 6px;
}
.scrollable-table-container::-webkit-scrollbar-track {
  background-color: #f9f9f9;
}

/* ---------- Ripple Effect ---------- */
.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0.75;
  border-radius: 50%;
  animation: rippleEffect 1s ease-out;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@keyframes rippleEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }
  100% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}

/* ---------- Info Pop-Up ---------- */

/*  Overlay to grey out the page */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

#info-icon {
  font-size: 30px;
  cursor: pointer;
  padding: 15px;
}

.info-area {
  position: fixed;
  top: 2%;
  right: 0;
  width: 90%;
  height: 90%;
  background: #fff;
  border-left: 2px solid #ccc;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  visibility: hidden;
}

.info-area.open {
  transform: translateX(-5%);
  visibility: visible;
}

/* Close button (X) */
.info-area .close-info {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.info-content {
  max-height: 78vh;
  overflow-y: auto;
  overflow-x: 
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}</pre></body></html>