/* --- Search Bar --- */

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    width: 50vw;
}

.main-header input {
    outline: 1px solid #282828;
    background-color: #121212;
    color: white;
    z-index:1;
    border: solid 0px;
    border-radius: 0px 20px 20px 0px;
    width: 70%;
    height: 40px;
}

.main-header input:focus {
    outline: 2px solid #1c62b9;
}

.search-bar button {
    border: none;
    width: 50px;
    height: 43px;
    background-color: #252525;
    border-radius: 20px 0px 0px 20px;
}

.search-bar button img {
    height: 20px;
    width: 20px;
}