body {
            background-color: #f8f9fa;
            font-family: Arial, sans-serif;
        }

       

        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:nth-child(odd) {
            background-color: #ffffff;
        }
        .table th, .table td {
            text-align: center;
        }
        .search-box {
            margin-bottom: 20px;
            margin-top: 20px;
        }
		
		td {
  white-space: pre-wrap;
  word-wrap: break-word;
  vertical-align: top;
}
		
		
		
		
		
		 /* Header container */
.header {
        background-color: #f7f7f7; /* Light gray background */
        color: #003366; /* Text color updated to #003366 */
        padding: 20px 40px;
        display: flex;
        justify-content: center; /* Center align content horizontally */
        align-items: center; /* Center align content vertically */
        border-bottom: 2px solid rgba(0, 0, 0, 0.1); /* Subtle border */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add box shadow for separation */
    }

    /* Logo */
    .header .logo img {
        max-width: 180px;
        height: auto;
        margin-right: 100px; /* Space between logo and company info */
    }

    /* Info section */
    .header .company-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left; /* Align text to the left */
    }

    .company-info p {
        margin: 5px 0;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Header company name */
    .company-name {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .company-info a {
        color: #003366;
        text-decoration: none;
        font-weight: bold;
    }

    .company-info a:hover {
        text-decoration: underline;
    }

    /* Icons */
    .header .company-info i {
        margin-right: 10px;
        font-size: 16px;
    }

    /* Adjust mobile responsiveness */
    @media (max-width: 768px) {
        .header {
            flex-direction: column;
            align-items: center; /* Center the content vertically on small screens */
        }

        .header .logo img {
            margin-right: 0; /* Remove margin when stacked vertically */
            margin-bottom: 10px;
        }

        .company-info p {
            font-size: 12px;
        }
    }