.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.left-panel {
    width: 60%;
}

.right-panel {
    width: 40%;
}

form {
    margin-bottom: 20px;
}

#search-results ul,
#predict-result {
    list-style-type: none;
    padding: 0;
}

#search-results li,
#predict-result div.result-item {
    display: flex;
    margin: 10px 0;
}

.result-text {
    width: 75%;
}

.result-image {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-results li {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}
