@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');
      *,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  
}

body {
  margin: 0;
  overflow-x:hidden;
}

* {
  font-family: Nunito, sans-serif;
}

    
.bg-video {
      position: fixed;
      right: 0;
      bottom: 0;
      min-width: 100%;
      min-height: 100%;
      z-index: -1;
      object-fit: cover;
  }
     
    
    h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #14532d;
      font-size: 32px;
    }

    .dropdown-container {
      text-align: center;
      margin-bottom: 30px;
    }

select {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #7bc47f;
  background-color: rgba(0, 0, 0, 0.3); /* transparent */
  color: white;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 128, 0, 0.1);
  backdrop-filter: blur(4px); /* Optional for glass effect */
  transition: background-color 0.3s ease;
}

    table {
      width: 85%;
      margin: 0 auto;
      border-collapse: collapse;
      backdrop-filter: blur(4px);
      background-color: transparent; /* Transparent background */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 128, 0, 0.1);
    }

    th, td {
      padding: 14px 24px;
      text-align: left;
      color: white;
    }

    th {
      background-color: #38a169;
      color: white;
      font-size: 16px;
    }

    tr:nth-child(even) {
      background-color: rgba(56, 161, 105, 0.05);
    }

    tr:hover {
      background-color: rgba(72, 187, 120, 0.15);
      transition: 0.3s ease;
    }

    a {
      color: #2f855a;
      text-decoration: none;
      font-weight: 500;
    }

    a:hover {
      text-decoration: underline;
    }

    #noData {
      text-align: center;
      font-size: 18px;
      color: #6b7280;
      margin-top: 20px;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {

      h1 {
        font-size: 28px;
      }


      .dropdown-container {
        margin-bottom: 20px;
      }

      select {
        padding: 10px 18px;
        font-size: 14px;
      }

      table {
        width: 100%; /* Table takes full width */
      }

      th, td {
        padding: 10px 15px;
        font-size: 14px;
      }

      #noData {
        font-size: 16px;
      }
    }

    @media screen and (max-width: 480px) {
      h1 {
        font-size: 24px;
      }

      select {
        padding: 8px 15px;
        font-size: 12px;
      }

      th, td {
        padding: 8px 12px;
        font-size: 12px;
      }

      #noData {
        font-size: 14px;
      }
    }