.searchbar-container{
    display: flex;
    width: 100%;
    height: 70px;
    justify-content: center;
    margin-top: 100px;
}

.searchbar{
    display: flex;
    align-self: auto;
    width: 540px;
    height: 70px;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: #001D5B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.searchbar-left-select{
    height: 100%;
    width: 180px;
    text-align: center;
    border: none;
    color:#001D5B;
    font-size: 16px;
    transition: background-color 0.2s;
}
.searchbar-left-select:hover{
    text-decoration: underline;
}

.searchbar-middle-select{
    height: 100%;
    width: 180px;
    text-align: center;
    color:#001D5B;
    font-size: 16px;
    border: none;
    border-left-color:#001D5B;
    border-left-width: 1px;
    border-left-style: solid;
    border-right-color:#001D5B;
    border-right-width: 1px;
    border-right-style: solid;
    transition: background-color 0.2s;
}

.searchbar-middle-select:disabled{
    color: rgb(70, 70, 70);
    background-color: rgb(205, 205, 205);
}

.searchbar-middle-select:hover{
    text-decoration: underline;
}

.searchbar-middle-select:disabled:hover{
    text-decoration: none;
}

.searchbar-right-button{
    height: 100%;
    width: 180px;
    background-color: white;
    text-align: center;
    color:#001D5B;
    border: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.searchbar-right-button:disabled{
    color: rgb(140, 140, 140);
    background-color: rgb(220, 220, 220);
}

.searchbar-right-button:hover{
    background-color: rgb(215, 215, 215);
}

.searchbar-right-button:disabled:hover{
    text-decoration: none;
}

@media print{
    .searchbar-container{
        display: none;
    }
}