* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  /* Desktop side navigation */
.sidenav {
    height: 100%;
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 20px; /* Add padding for the title */
  }
  
  /* Site title for desktop */
  .desktop-title {
    color: white;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
  }
  
  /* Side nav links */
  .sidenav a {
    color: white;
    padding: 16px;
    text-decoration: none;
    display: block;
  }
  
  .sidenav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Bottom section for side nav and mobile menu */
.sidenav-bottom, .mobile-nav-bottom {
    margin-top: auto;
    padding: 20px;
    text-align: center;
  }
  
  .bottom-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .bottom-text {
    color: white;
    font-size: 14px;
    line-height: 1.7;
  }
  
  /* Ensure side nav bottom section sticks to the bottom */
  .sidenav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Ensure mobile nav bottom section sticks to the bottom */
  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Adjustments for mobile view */
  @media screen and (max-width: 768px) {
    .sidenav-bottom {
      display: none; /* Hide side nav bottom on mobile */
    }
  
    .mobile-nav-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 30px;
    }
  }
  
  /* Main content */
  .content {
    margin-left: 200px;
    padding: 30px;
  }
  .content h1 {
    font-size: 60px;
  }
  .content h2 {
    font-size: 40px;
  }
  .content p {
    font-size: 35px;
  }
  .content li {
    font-size: 35px;
  }
  .content a {
    color: #FF6000;
  }
  .content a:hover {
    color: #f0bd9d;
  }
  /* Table container for responsiveness */
.table-container {
  width: 100%;
  overflow-x: auto;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 30px;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: left;
  min-width: 600px; /* Ensures table won't shrink too much */
}

/* Header cells */
th {
  background-color: #333;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  border: 1px solid #ddd;
}

/* Data cells */
td {
  padding: 12px;
  border: 1px solid #ddd;
}

/* Alternating rows */
tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Hover effect */
tr:hover {
  background-color: #f1f1f1;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  th, td {
      padding: 10px;
      font-size: 14px;
  }

  .table-container {
      border-radius: 0;
  }
}

/* Horizontal scrolling for mobile */
.table-container::-webkit-scrollbar {
  height: 8px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}
  
  /* Hide mobile elements in desktop view */
  .mobile-header,
  .mobile-nav {
    display: none;
  }

  
  /* Mobile view */
@media screen and (max-width: 768px) {
    .sidenav {
      display: none;
    }
  
    /* Sticky mobile header */
    .mobile-header {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 10px 20px;
      background-color: #111;
      color: white;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000; /* Ensure it stays above other content */
    }
  
    .left-side {
      display: flex;
      align-items: center;
      gap: 15px;
    }
  
    .toggle-btn {
      background-color: #111;
      color: white;
      border: none;
      font-size: 20px;
      padding: 10px;
      cursor: pointer;
    }
  
    .site-title {
      margin: 0;
    }
  
    /* Slide-in mobile nav (fixed) */
    .mobile-nav {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background-color: #111;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: left 0.3s ease;
      z-index: 999; /* Below header */
    }
  
    .mobile-nav a {
      color: white;
      text-decoration: none;
      padding: 15px;
    }
  
    .mobile-nav a:hover {
      background-color: #ddd;
      color: black;
    }
  
    .mobile-nav.active {
      left: 0;
    }
  
    .close-btn {
      background-color: transparent;
      color: white;
      border: none;
      font-size: 20px;
      align-self: flex-end;
      cursor: pointer;
      padding: 10px;
    }
  
    /* Ensure content starts below the header */
    .content {
      margin-top: 60px; /* Adjust based on the header height */
      margin-left: 0;
      padding: 30px;
    }
    .content h1 {
        font-size: 30px;
      }
    .content h2 {
        font-size: 25px;
      }
    .content p {
        font-size: 20px;
      }
      .content li {
        font-size: 20px;
      }
      .animated-footer p {
        font-size: 12px;
        font-style: italic;
      }
  }
  
 /* Animated footer */
.animated-footer {
    width: 100%;
    background-color: #111;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    position: right; /* Changed from fixed */
    animation: slideUp 1s ease-out;
  }
  
  /* Footer animation */
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  