
.card-img-top {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.suggestions {
    position: absolute;
    z-index: 1000;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    width: 84%;
}

.suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions li {
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.suggestions li:hover {
    background-color: #f0f0f0;
}

