
    /* Style for the Scroll Up button */
    .scroll-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: rgba(88, 178, 96, 1);
        color: rgba(149, 218, 248, 1);
        border: solid;
        border-radius: 50%;
        border-color: black;
        padding: 15px;
        font-size: 18px;
        cursor: pointer;
        display: none; /* Initially hidden */
        transition: opacity 0.3s;
    }

    .scroll-btn:hover {
        background-color: rgba(149, 218, 248, 1);
        color: rgba(88, 178, 96, 1);
    }

    /* Optional: Smooth scroll for the entire page */
    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: #ffffff; /* Set your desired background color */
    }

    table {
        border-collapse: collapse;
        width: 100%
    }
        
    table1, table2, table3, table4, table5, table6, table7, th, td {
        border: inset rgba(88, 178, 96, 1);
    }

    th, td, h1, h2, h3 {
        text-align: center;
        padding: 5px;
        width: 500px;
    }

    tr:nth-child(even) {
        background-color: rgba(154, 202, 236, 0.9);
    }

    tr:nth-child(odd) {
        background-color: #95daf8;
    }

    .accreditor {
        height: auto; /* Maintain the aspect ratio */
        width: 300px; /* Set the desired width */
    }

    .background {
        background-image: url('Watermark 2.png');
        background-position: center; /* Centers the background image within the container */
        background-size: cover; /* Adjusts the size of the background image to cover the entire container */
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: -1; /* Ensure the background is behind other content */
        opacity:0.4;
    }

    .badge {
        width: 150px; /* Set the desired width */
        weight: auto; /* Maintain the aspect ratio */
    }

    .center-container {
        text-align: right;
    }

    /* Style for the home button */
    .home-button {
        display: inline-block;
        background-color: rgba(154, 202, 236, 1);
        color: black;
        text-decoration: none;
        padding: 5px 20px;
        border-radius: 5px;
        font-size: 20px;
        font-weight: bold;
        border: solid;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: inset rgba(88, 178, 96, 1);
    }
    
    .home-button:hover {
        background-color: rgba(88, 178, 96, 1); /* Darker shade of the primary color on hover */
        color: black;
        border: inset rgba(154, 202, 236, 1);
    }

    /* Logo styling */
    .logo {
        background-color: #95daf8; /* Background color of the logo */
        border: inset rgba(88, 178, 96, 1); /* Border color */
        border-radius: 5px; /* Rounded corners */
        color: black; /* Change the color as needed */
        font-size: 50px;
        font-weight: bold;
        letter-spacing: 20px;
        padding: 10px;
        text-align: center;
        text-transform: uppercase;
        word-spacing: 15px;
    }

    .underline {
        text-decoration: underline;
    }
