body {
    /* font-family: Arail, sans-serif; */
}

/* Formatting search box */
.search-box {
    width: 500px;
    /* max-width: 500px; */
    position: relative;
    /* display: inline-block; */
    font-size: 14px;
    /* margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto; */
    margin: auto;
}

.search-box input[type="text"] {
    height: 32px;
    padding: 5px 10px;
    border: 1px solid #CCCCCC;
    font-size: 14px;
    margin-bottom: 15px;
}

.result {
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
}

.search-box input[type="text"],
.result {
    width: 100%;
    box-sizing: border-box;
}

/* Formatting result items */
.result p {
    /* margin: 0;
    padding: 7px 10px;
    border: 1px solid #CCCCCC;
    border-top: none;
    cursor: pointer; */
}

.result p:hover {
    background: #f2f2f2;
}


#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    /* red */
    background-color: cornflowerblue;
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners 18 */
    font-size: 13px;
    /* Increase font size */
}

#myBtn:hover {
    background-color: #555;
    /* Add a dark-grey background on hover */
}

/* style the results cards */
.results_header {
    background: #F7F9F9;
}

.results_body {
    background-color: #F0F3F4;
}

.results_footer {
    background-color: #F0F3F4;
}

.results_card {
    /* background: #F7F9F9; */
    background: #e8c146;
}

.results_button{
    right: 0px; 
    position: absolute;
    margin-bottom: 25px;
    /* float-right */
}

.results_api_icon{
    font-size: 1.0rem;
    color: cornflowerblue;
}

.results_top_space{
    margin-top: 10px;
}