/* Style for the search form */
#custom-search-form {
    display: flex;
    align-items: center;
}

/* Style for the search input field */
#custom-search-form input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 5px;
	margin-top: 18px;
}

/* Style for the search button */
#custom-search-form input[type="submit"] {
    padding: 8px 12px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	margin-top: 18px;
}

/* Hover effect for the search button */
#custom-search-form input[type="submit"]:hover {
    background-color: #45a049;
}
