* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000;
}

h1 {
    margin: 0;
    padding: 0;
}

a,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.header-top-wrapper {
    gap: 30px;
}

h1 {
    max-width: 900px;
    font-weight: 900;
    font-size: 24px;
}

.table-list-top-header {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    width: 260px;
    height: 240px;
    overflow-y: auto;
}

.table-list-top-header table {
    max-width: 100%;
    max-height: 100%;
}

.clg-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.main-title-wrapper p {
    font-weight: 900;
}

.left-header-row span:nth-child(1) {
    font-weight: 500;
}

.table-list-top-header table td,
.table-list-top-header table th {
    padding: 2px 4px;
    font-size: 10px;
}

.left-header-box {
    font-size: 14px;
}

.main-table-body {
    margin-top: 20px;
}

.main-table-body .table thead th {
    vertical-align: middle;
    text-align: center;
}

.footer-wrapper {
    margin-top: 80px;
    font-weight: 500;
}

/* respoinsive media query */
@media (max-width: 991px) {
    body {
        font-size: 14px;
    }

    .header-top-wrapper {
        gap: 20px;
    }

    .table-list-top-header {
        margin: 20px auto;
        position: static;
    }

    .table-list-top-header {
        width: 100%;
    }

    .table-list-top-header-tablet {
        margin: 0;
    }

    .main-table-body table {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        overflow-x: auto;
    }

    .main-table-body {
        overflow-x: auto;
        /* Firefox */
        scrollbar-width: thin;
        scrollbar-color: #888 #f1f1f1;
        /* IE */
        -ms-overflow-style: -ms-autohiding-scrollbar;
        /* Ensure smooth scrolling on iOS */
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar for Chrome, Safari, Opera */

        &::-webkit-scrollbar {
            display: none;
        }

        /* Hide scrollbar for IE, Edge, Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
        /* Maintain smooth scrolling on iOS */
        -webkit-overflow-scrolling: touch;
    }

    /* Webkit browsers (Chrome, Safari, Opera, Edge) */
    .main-table-body::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .main-table-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .main-table-body::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
        border: 1px solid #f1f1f1;
    }

    .main-table-body::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    /* Edge and IE */
    @supports (-ms-overflow-style: none) {
        .main-table-body {
            -ms-overflow-style: auto;
        }
    }

    /* For iOS devices */
    @supports (-webkit-touch-callout: none) {
        .main-table-body {
            overscroll-behavior: none;
        }
    }
}

/* For older IE versions */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .main-table-body {
        -ms-overflow-style: auto;
    }
}