/*  Search Interface Section */
.search-interface .search-bar{
    display: flex;   
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.search-interface .search-bar form{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.search-interface .search-bar button{
    padding: 8px;    
    border: none;
    background-color: unset;
    margin-left: 5px;
    cursor: pointer;
}

.search-interface .search-bar button .fa{
    font-size: 1rem;
}

.search-interface #search-input{    
    padding: 12px 15px;      
    border: 1px solid lightgrey;
    /* background-color: rgb(226, 248, 221, 0.7); */
    border-radius: 10px;
}

.search-interface .search-bar #search-input{
        min-width: 400px;
    }

.search-interface #search-input:focus{
    outline: none;
    border: 1px solid rgb(139, 139, 139);
}

.search-interface .search-results{
    padding: 15px 5px;    
}

.search-interface .search-filters a{
    text-decoration: none;
    padding-left: 5px;
    padding-right: 5px;
}

.search-interface .search-filters{
    display: flex;
    align-content: center;
    gap: 20px;
    justify-content: center;
}

.search-interface .search-filters .fa{
    margin-right: 6px;
    
}

@media only screen and (max-width: 768px) {
    .search-interface .search-filters{
        width: 100%;
        margin-top: 25px;
    }
    .search-interface .search-bar form{
        width: 100%;
    }
    .search-interface .search-bar #search-input{
        min-width: 80%;
    }
    .search-interface table td:last-child, .search-interface table th:last-child{
        display: none;
    }
}

.search-interface .search-item{
    
    padding: 8px 5px;    
    cursor: pointer;
    border-top: 1px solid lightgrey;
}

.search-interface .search-item:last-child{
    border-bottom: 1px solid lightgrey;
}

.search-interface table{
    border-collapse: collapse;    
    width: 100%; 
    margin-top: 15px;
    margin-bottom: 30px;
}

.search-interface table tr:first-child th{
    
    padding: 8px 10px;
    border-bottom: 1px solid lightgrey;
}

.search-interface table tr th:first-child{
    text-align: left;
}

table tr th:not(table tr th:first-child){
    /* border-left: 1px solid lightgrey;  */
    
}

.search-interface table tr td:not(table tr td:first-child){
    text-align: center;
}

.search-interface table tr td{
    padding: 10px;
}

.search-interface table tr:not(table tr:first-child):hover{
    cursor: pointer;
    background-color: rgba(226, 248, 221, 0.8);
    background-color: #50c21f25;
}

.search-interface .fa-arrow-alt-circle-down{
    font-size: 1.25rem;
    margin-right: 5px;
}

.search-interface .fa-external-link-alt{
    font-size: 1.15rem;
}

.search-interface .fa{
    transition: all 0.15s ease-in;
}

.search-interface table .fa:hover{
    cursor: pointer;    
    transform: scale(0.8);
}