     :root {
            --title-font-size: 14px;
            --title-color: black;
        }

        body {
            font-family: "Roboto", sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #000;
        }

        /* Header Styles */
        .bd-header {
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 4px solid red;
            padding: 15px 0;
            position: relative;
            width: 100%;
        }

        .header-logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80%;
            max-width: 300px;
            padding: 10px 0;
        }

        .main-logo {
            width: 40%;
            max-width: 300px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* Mobile responsiveness */
        @media (max-width: 767px) {
            .bd-header {
                padding: 0 0;
            }
            
            .main-logo {
                max-width: 1200px;
            }
        }

        @media (min-width: 768px) {
            .main-logo {
                max-width: 1200px;
            }
        }

        .bd-business-hub {
            max-width: 900px;
            margin: 70px auto;
            padding: 5px;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #000;
        }

        .bd-business-hub h2, 
        .bd-business-hub h3 {
            color: #000;
        }

        .bd-business-hub p {
            line-height: 1.6;
            margin: 1em 0;
            color: #000;
        }

        .bd-business-hub ul {
            padding-left: 20px;
            color: #000;
        }

        .bd-business-hub blockquote {
            font-style: italic;
            color: #333;
            border-left: 4px solid #cc0000;
            margin: 1em 20px;
            padding-left: 15px;
            background-color: #f9f9f9;
        }

        .bd-business-hub nav a {
            margin: 0 10px;
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        .bd-business-hub nav a:hover {
            text-decoration: underline;
            color: #cc0000;
        }

        .bd-business-hub-header {
            background: #fff;
            color: #000;
            padding: 20px;
            text-align: center;
            border-radius: 8px 8px 0 0;
            margin: -20px -20px 20px -20px;
            border-bottom: 2px solid #cc0000;
        }

        .bd-business-hub-footer {
            background: #fff;
            color: #000;
            padding: 15px;
            text-align: center;
            border-radius: 0 0 8px 8px;
            margin: 20px -20px -20px -20px;
            border-top: 2px solid #cc0000;
        }

        h1 {
            color: #000;
            background-color: #fff;
        }

        strong {
            color: #000;
        }

        span {
            color: #000;
        }
       
        #inner-wrap {
            padding: 20px;
            background-color: #fff;
        }

        .search-box {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0em;
            flex-direction: column;
        }

        .search-box button {
            width: 80px;
            margin-right: 80%;
        }

        #tables {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        #all-tables {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin-top: 30px;
        }

        h2 {
            text-align: center;
            font-size: 18px;
            margin-bottom: 20px;
            color: #000;
        }

        .container {
            background-color: #fff;
            border: 1px solid #000;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 300px;
            margin-bottom: 20px;
        }

        .container h2 {
            margin-bottom: 20px;
            font-size: 12px;
            color: #000;
        }

        .container label {
            display: block;
            text-align: left;
            margin: 10px 0 5px 0;
            color: #000;
        }

        .container select,
        .container input {
            width: 100%;
            padding: 6px;
            margin: 3px 0 3px 0;
            border: 1px solid #000;
            border-radius: 5px;
            box-sizing: border-box;
            background-color: #fff;
            color: #000;
        }

        .container button {
            background-color: #28a745;
            color: white;
            padding: 8px;
            border: none;
            border-radius: 5px;
            margin: 4px 0 0px 0;
            cursor: pointer;
            width: 100%;
            font-size: 15px;
        }

        .container button:hover {
            background-color: #218838;
        }

        table {
            margin-bottom: 1.5em;
            border-collapse: collapse;
            width: 99.6106%;
            margin-left: auto;
            margin-right: auto;
            background-color: #fff;
        }

        table a {
            color: #000;
            text-decoration: none;
            font-weight: bold;
            font-size: 15px;
        }

        #message {
            text-align: center;
            color: #cc0000;
            font-size: 15px;
            background-color: #fff;
        }

        table td {
            font-weight: bold;
        }

        td,
        tr td {
            border: 1px solid #000;
            height: 35px;
            font-size: 15px;
            color: #000;
        }

        th,
        td {
            text-align: center;
            padding: 5px;
        }

        tbody tr {
            height: 35px;
        }

        tr:nth-child(even) {
            background-color: #ffdfd548; /* Light pink */
        }

        tr:nth-child(odd) {
            background-color: #f0f0f0; /* White */
        }

        /* Highlighted row styles */
        tr.highlighted {
            background-color: #ffeb3b !important; /* Yellow background */
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.7); /* Golden glow effect */
            border: 2px solid #ff9800; /* Orange border */
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.7); }
            50% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.9); }
            100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.7); }
        }

        th span {
            font-weight: bold;
            color: #000;
        }
        
        .table-container h4 {
            text-align: center;
            margin: 0px 1px 5px 1px;
            font-size: var(--title-font-size);
            font-family: Roboto Slab;
            color: var(--title-color);
            background-color: #fff;
        }

        /* Search result section styles */
        .search-result-section {
            margin-bottom: 30px;
            border: 2px solid #28a745;
            border-radius: 10px;
            padding: 15px;
            background-color: #fff;
        }

        .search-result-title {
            text-align: center;
            color: #28a745;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e5e5e5;
            background-color: #fff;
        }

        @media (min-width: 700px) {
            .table-container {
                width: 75%;
            }
        }

        /* Footer Styles */
        .footer-widget-area-inner {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            border-top: 1px solid #e5e5e5;
            color: #000;
        }
        
        /* Table header style */
        thead tr {
            background-color: #ffdfd58e !important;
        }

        /* Banner Styles */
        .banner-container {
            margin: 30px auto;
            text-align: center;
            max-width: 900px;
        }

        .table-banner {
            width: 100%;
            max-width: 900px;
            height: auto;
            display: block;
           
           
            margin: 1px 0;
        }

        
        td a[href*="wa.me"] span {
            color: #cc0000 !important;
            font-weight: bold !important;
        }

        
        td a[href="https://wa.me/+601127787618"] span {
            color: #cc0000 !important;
        }

      
        table a[style*="color: #cc0000"] span {
            color: #cc0000 !important;
            font-weight: bold !important;
        }