/* Container for the search bar */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 5rem;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
}

.search-bar.submitted {
    height: auto;
    padding: 10px 20px;
    background-color: #f0e6d2;
    border-bottom: 2px solid #8f9779;
    
    /* Position the search bar correctly below the fixed header */
    margin-top: 60px;
}

/* Style for the input field */
.search-bar input[type="search"] {
    width: 80vw;
    max-width: none;
    padding: 15px 20px;
    font-size: 1.2rem;
    border: 2px solid #4b5320;
    border-radius: 50px;
    background-color: #fcf8f3;
    color: #2f3e1c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.search-bar input[type="search"]:focus {
    outline: none;
    border-color: #8f9779;
    box-shadow: 0 0 10px rgba(143, 151, 121, 0.5);
}