header{
    display:flex; 
    flex-wrap: nowrap;
}
.icon{
    display: flex;
    flex:1 1 auto;
}
.search{
    background-color: #e5e5e5;
    width: 75%;
    height: 35px;
    margin:0px 20px 0px 20px;
    border-style: solid;
    border-color: #9b9b9b;
    border-radius: 30px;
    border-width: 2px;
    text-align: left;
    padding: 5px 10px 5px 10px;
}
.delivery{
    background-color: #e5e5e5;
    margin-inline: -15px;
    margin-top: 40px;
    padding-left: 15px;
}

body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}
h1 {
    text-align: center;
}
form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}
input[type="text"],
input[type="date"],
input[type="time"],
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
textarea {
    resize: vertical;
}
button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #0069d9;
}

/* keep at bottom */
@media (max-width: 600px){
    .icon{
        display:none;
    }
}