.custom-search-engine {
    margin: 30px 0;
    max-width: 100%;
}

.search-form {
    margin-bottom: 25px;
    display: flex;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    padding: 14px 20px;
    width: 80%;
    border: 1px solid #e0e0e0;
    border-right: none;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    flex-grow: 1;
}

.search-input:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.search-button {
    padding: 14px 25px;
    background-color: #007cba;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
    text-transform: uppercase;
}

.search-button:hover {
    background-color: #005a87;
}

.search-result {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
}

.result-thumbnail {
    margin-right: 15px;
}

.result-thumbnail img {
    max-width: 150px;
    height: auto;
}

.result-content h3 {
    margin: 0 0 10px;
}

.pagination {
    margin-top: 20px;
}

.page-number {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}

.page-number.current {
    background: #007cba;
    color: white;
}
