#search-form {
                        display: flex;
                        align-items: center;
                        margin: 20px 0;
                }

                #search-input {
                        font-size: 18px;
                        padding: 10px;
                        border-radius: 5px 0 0 5px;
                        border: none;
                        width: 70%;
                }

                #search-button {
                        background-color: #4CAF50;
                        color: white;
                        border: none;
                        padding: 10px;
                        border-radius: 0 5px 5px 0;
                        cursor: pointer;
                        width: 20%;
                        font-size: 18px;
                }

                #search-button:hover {
                        background-color: #3e8e41;
                }
