
body{
    font-family: 'Muli', Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f5f7fa;
    color: #2c3e50;
}
.layout{
    display: grid;

    grid-template-columns: auto 1fr;
}
.search-section{
    padding: 16px;
    min-width: 290px;
}

#search, #btnSubmit{
    min-height: 40px;
}

#search-and-submit{
    display: grid;
    grid-template-columns: auto 40px;
}

#sel{
    width: 100%;
}

.link-section{
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit,290px);
    gap:1rem;
    Columns: 5; 
    
}


.group{
    border: 2px solid rgb(119, 170, 224);
    border-radius: 8px;
    box-shadow: 0px 5px 6px -5px rgb(151 163 184 / 50%), 0px 15px 12px -15px rgb(151 163 184 / 50%), 0px 25px 18px -25px rgb(151 163 184 / 50%);

}

.group > div {
    text-align:center;
    color: rgb(72, 130, 192);
    background-color: rgb(193, 216, 240);
    padding: 8px;
    border-radius: 5px 5px 0 0;
    font-weight: bold;

}

a{
    
    height: 40px;
    
    border-radius: 1px;
    border-bottom: 1px solid rgb(223, 223, 223);

    text-decoration: none;
    
    display: grid;
    grid-template-columns: 40px 250px;

    align-items: center;
    justify-content: left;
    
}
a span:first-child{
    text-align:center;
    color: silver;
    font-size: 10px;
    font-weight: bold;
}

a:link {
color: rgb(0, 132, 255);
}
a:visited {
color: rgb(0, 132, 255);
}
a:hover {
    background-color: rgb(0, 132, 255);

color: #eee;
}
a:visited:hover {
color: white;
}