* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
   background: #2a3b9b;
background: radial-gradient(circle,rgba(42, 59, 155, 1) 58%, rgba(247, 0, 0, 1) 100%, rgba(237, 221, 83, 1) 100%);

    min-height: 100vh;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}


.page-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    z-index: 999;
}
.logo-text-block{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header-logo {
    display: table;
    width: 150px;
    img{
        width:100%;
    }
}

marquee {
    max-width:600px;
}

marquee p {
    font-size: 25px;
    font-weight: 900;
    line-height: 25px;
    margin: 0;
}

marquee p span:first-child {
    color: #208FF6;
}

marquee p span:nth-child(2) {
    color: #F6202D;
}

marquee p span:last-child {
    color: #7120F6;
}

marquee p span {
    margin: 0 15px;
}

.table-result-heading {
    padding: 14px;
    background: #39B963;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.table-result-body {
    overflow-x: auto;
    padding: 5px;
    background: #fff;
}

thead th {
    padding: 10px;
    background: #FFEBB8;
    border-color: #FFEBB8;
    font-size: 13px;
    color: #0B008C;
    font-weight: 700;
    border: none;
    border-bottom: 5px solid #fff;
    text-align: center;
    border-bottom-style: inset;
}

tbody td {
    padding: 13px 10px;
    background: #FFF6DD;
    border: 1px solid #000;
    font-size: 13px;
    color: #0F0836;
    font-weight: 600;
    text-align: center;
}

thead {
    background: #FFEBB8;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tbody td p span {
    display: block;
}

/*thead th:first-child,
tbody td:first-child {
    position: sticky;
    left: 0;
}*/


.table-result-area {
    margin:60px 0px 35px 0px;
}

tbody td p {
    margin: 0;
}

.table-result-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

@media(min-width: 1200px) {
  
    marquee p {
        font-size: 60px;
        line-height: 60px;
    }

    thead th {
        padding: 13px 10px;
        font-size: 20px;
    }

    tbody td {
        font-size: 16px;
    }

    .table-result-area {
        margin-top:30px; 
    }
}




.table-result-body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50px;
}

/* Track */
.table-result-body::-webkit-scrollbar-track {
  background: #f1f1f1; 
  width: 3px;
  height: 3px;
  border-radius: 50px;
}
 
/* Handle */
.table-result-body::-webkit-scrollbar-thumb {
  background: #0F0836; 
  width: 3px;
  border: 1px solid #fff;
  border-radius: 50px;
}

/* Handle on hover */
.table-result-body::-webkit-scrollbar-thumb:hover {
  background: #555; 
}