.search-input {
    width: 500px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
}

/* Style for the search button */
.search-button {
    padding: 4px 10px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 10px; /* Rounded corners */
    cursor: pointer;
    font-size: 16px;
}

/* Style to align the button next to the input field */
.search-form {
    display: inline-block;
}

