form#ajax-search-form {
    display: flex;
    justify-content: space-between;
}
input#search {
    width: 75%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #42643c;
}
.search-btn, .clear-btn {
font-size: 14px;
color: white;
text-transform: uppercase;
background: #42643c;
border: none;
padding: 10px 25px;
border-radius: 5px;
}
.api-response {
    border-radius: 5px;
    margin-top: 35px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    overflow-x:auto;
}
.not-found {
    font-size: 25px;
    color: #b50606;
}
.results-table, tr, td {
    border: 1px solid #dddddd;  
    padding: 10px !important;  
}
tr,td {    
    padding: 10px;
}
td.theading, td.tresult {
    font-size: 16px;   
    color: #6c6a6a;      
}
td.theading {  
    font-weight: 600;  
    color: #121212;
}
td.tresult a {
color: #076898;
}
.weight-info-heading {
    background: #42643c;
    color: white;
    font-size: 16px;
    font-weight: 700;   
}
.weight-info-results {
    color: black;
    font-size: 16px;
}
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #42643c;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}