﻿.search-dropdown {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    max-height: 350px;
    overflow-y: auto;
    z-index: 9999;
}

.search-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
}

.search-item:hover {
    background: #f8f9fa;
    cursor: pointer;
}

.search-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.search-item-text {
    display: flex;
    flex-direction: column;
}

.search-title {
    font-weight: 800;
    font-size: 16px;
    color: #0000EE;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Adjust to 2 or 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-description {
    font-size: 14px; /* Google uses around 14px */
    line-height: 1.4; /* More readable */
    color: #4d5156; /* Google's grey text color */
    margin-top: 4px;
    /* For 2–3 lines max like Google */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Adjust to 2 or 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

