* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #111;
      line-height: 1.6;
      animation: fadeIn 0.8s ease-in;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    header {
      background: #e0f4ff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .hamburger {
      font-size: 1.8rem;
      cursor: pointer;
      user-select: none;
    }

    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      overflow: visible;
      min-width: 180px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      animation: fadeIn 0.3s ease;
      z-index: 100;
    }

    .menu a, .menu button {
      padding: 0.75rem 1.2rem;
      color: #007acc;
      text-decoration: none;
      transition: background 0.2s;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      position: relative;
      white-space: nowrap;
    }

    .menu a:hover, .menu button:hover {
      background-color: #f0f8ff;
    }

    .submenu {
      display: none;
      flex-direction: column;
      border-top: 1px solid #ccc;
    }

    /* New submenu to the left of "More.." */
    .more-submenu {
      display: none;
      position: absolute;
      top: 0;
      right: 100%;
      background: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      min-width: 180px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      flex-direction: column;
      z-index: 110;
    }

    .more-submenu a {
      padding: 0.75rem 1.2rem;
      color: #007acc;
      text-decoration: none;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      white-space: nowrap;
    }

    .more-submenu a:hover {
      background-color: #f0f8ff;
    }

    main {
      padding: 2rem;
      max-width: 900px;
      margin: auto;
    }

    .title-filter-container {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    h1 {
      font-size: 2rem;
      font-weight: 600;
      margin: 0;
    }

    p {
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    h2 {
      font-size: 1.3rem;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    table th, table td {
      border: 1px solid #ccc;
      padding: 0.75rem;
      text-align: center;
    }

    table th {
      background-color: #f0f8ff;
      font-weight: 600;
    }

    table td a {
      color: #007acc;
      text-decoration: underline;
    }

    footer {
      margin-top: 3rem;
      background: #e0f4ff;
      padding: 1rem 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: #333;
    }

    footer a {
      color: #007acc;
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      text-decoration: underline;
    }

    footer .copyright {
      margin-top: 0.5rem;
      font-size: 0.8rem;
      color: #666;
    }

    /* FILTER DROPDOWN STYLES */
    #filterBtn {
      padding: 0.5rem 1rem;
      cursor: pointer;
      border: 1.5px solid #007acc;
      background: white;
      color: #007acc;
      border-radius: 6px;
      font-weight: 600;
      user-select: none;
      white-space: nowrap;
    }

    #filterDropdown {
      display: none;
      position: absolute;
      top: 110%;
      left: 0;
      background: white;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      min-width: 180px;
      z-index: 200;
    }

    .filterOption {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 0.75rem 1.2rem;
      background: none;
      border: none;
      color: #007acc;
      cursor: pointer;
      font-weight: 600;
      user-select: none;
    }

    .filterOption:hover {
      background-color: #f0f8ff;
    }

    .filterOption.active {
      border: 2px solid #007acc;
      border-radius: 6px;
      font-weight: 700;
    }

    .filterOption span {
      user-select: none;
    }

    .caution-box {
      border: 2px solid #f9a825;
      background-color: #fff8e1;
      color: #8a6d1d;
      padding: 1rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      max-width: 600px;
      margin: 1rem 0;
    }