/* MAIN HEADER */

header {
    height: 65px;
    width: 100%;
    border-bottom: 1px solid var(--clr-lightgray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 5px 0;
}



/* MENU AND LOGO */

#menu-and-logo {
    min-width: 220px;
    height: 100%;
    padding: 10px 20px;
    justify-content: flex-start;
}

#menu {
    height: 50px;
    width: 50px;
    border-radius: 999px;
    cursor: pointer;
}

#menu:hover {
    background-color: var(--clr-bg-hover);
}

#menu:hover img {
    filter: brightness(0);
}

#menu img {
    height: 17px;
    width: 17px;
}

#logo {
    width: fit-content;
    cursor: pointer;
}

#logo img {
    height: 35px;
    width: 35px;
}

#logo span {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.01785714em;
    color: var(--txt-gray);
}



/* SEARCHBAR */

#search-container {
    height: 100%;
    width: 70%;
    display: flex;
    align-items: center;
}

#form {
    height: 75%;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    background-color: var(--clr-bg-light);
    padding: 10px 10px;
    justify-content: space-between;
}

#form:focus-within {
    color: var(--txt-dark);
    background-color: var(--clr-white);
    box-shadow: 0 1px 1px 0 rgba(65,69,73,.3),0 1px 3px 1px rgba(65,69,73,.15);
}

#form > div {
    width: 85%;
}

#form button {
    height: 35px;
    width: 35px;
    border-radius: 999px;
}

#form button:hover {
    background-color: var(--clr-bg2-hover);
}

#form button img {
    height: 17px;
    width: 17px;
    object-fit: contain;
}

#form input {
    height: 80%;
    width: 90%;
    font-size: 1rem;
    background-color: transparent;
    outline: none;
    border: none;
}



/* ACCOUNT ICON */

#account-settings {
    padding: 0 5px;
}

#settings {
    height: 50px;
    width: 50px;
    border-radius: 999px;
    cursor: pointer;
}

#settings:hover {
    background-color: var(--clr-bg-hover);
}

#settings:hover img {
    filter: brightness(0);
}

#settings img {
    height: 25px;
    width: 25px;
}


/* #account {

}

#account img {

} */