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

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

  
        /* Header Styles */
        .toggle-btn {
            display: flex;
            align-items: center;
            background-color: transparent;
            width: 20px;
            border-right: 1px solid #e5e5e5;
            color: #fff;
            padding: 10px 15px;
            cursor: pointer;
            z-index: 1100;
            color: #000;
        }
           .bd-header {
            background-color: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 3px solid #cc0000;
        }

        .bd-header > div {
            display: flex;
        }

        .logo-sm {
            width: 120px;
        }

        .top-side {
            color: #cc0000;
            text-decoration: none;
            margin-right: 2rem;
        }

        .calendar {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #e5e5e5;
            width: 120px;
            height: 120px;
            border-radius: 0px;
            font-family: 'Roboto', sans-serif;
            box-sizing: border-box;
            padding: 10px;
            margin: 1rem;
        }

        .header-desktop {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #cc0000;
            background-color: white;
        }

        @media (max-width: 767px) {
            .header-desktop {
                display: none;
            }

            .logo-sm {
                margin-top: 10px;
            }
        }

        @media (min-width: 768px) {
            .bd-header {
                border-bottom: 1px solid #e5e5e5;
                height: 3rem;
            }

            .logo-sm {
                display: none;
            }

            .toggle-btn {
                display: none;
            }
        }

        /* Main Content Styles */
        #inner-wrap {
            padding: 20px;
        }

        .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;
        }

        .container {
            background-color: #fff;
            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;
        }

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

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

        .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 Styles */
        table {
            margin-bottom: 1.5em;
            border-collapse: collapse;
            width: 99.6106%;
            margin-left: auto;
            margin-right: auto;
        }

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

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

        table td {
            font-weight: bold;
        }

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

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

        tbody tr {
            height: 35.px;
        }

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

        tr:nth-child(odd) {
            background-color: #FFF6F3;
        }

        /* 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;
        }

        .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);
        }

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

        .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;
        }

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

        /* Footer Styles */
        .footer-widget-area-inner {
            background-color: #f8f8f8;
            padding: 20px;
            text-align: center;
            border-top: 1px solid #e5e5e5;
        }

        /* BD Business Hub Section Styles */
        .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;
        }

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

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

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

        .bd-business-hub blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #0a2540;
            margin: 1em 20px;
            padding-left: 15px;
        }

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

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

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

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