.search-page {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.search-bar {
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #222;
    color: #fff;
}

.search-form button {
    padding: 12px 20px;
    border: 0;
    border-radius: 5px;
    background: crimson;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

.search-form button:hover,
.search-form button:focus {
    background: #b3122d;
}

.search-title {
    margin: 20px;
}

.suggestions {
    display: flex;
    justify-content: space-between;
}

.suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.suggestions a {
    color: #fff;
}

.suggestions i {
    margin-top: 10px;
    display: block;
    color: #aaa;
}

.suggestions li > div {
    display: flex;
}

.suggestions a > img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #aaa;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 500px;
    max-width: 100%;
    display: none;
}

.search-suggestions li {
    padding: 8px 12px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    background: linear-gradient(#fff, #ccc);
}

.search-suggestions a {
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}