.lookup-search-root {
    position: relative;
}

.lookup-search-form {
    width: 100%;
}

.lookup-search-shell {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    display: flex;
    min-height: 44px;
    overflow: hidden;
    width: 100%;
}

.lookup-search-left {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    padding-left: 12px;
}

.lookup-search-left img {
    height: 16px;
    width: 16px;
}

.lookup-search-input {
    border: 0;
    flex: 1;
    font-size: 14px;
    min-width: 0;
    outline: none;
    padding: 10px 12px;
}

.lookup-search-mic {
    align-items: center;
    background: transparent;
    border: 0;
    color: #5d5d5d;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    margin-right: 4px;
    width: 40px;
}

.lookup-search-root.is-recording .lookup-search-mic {
    color: #d92d20;
}

.lookup-search-submit {
    height: 1px;
    left: -9999px;
    position: absolute;
    width: 1px;
}

.lookup-search-dropdown {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    margin-top: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding: 8px 0;
    position: absolute;
    right: 0;
    z-index: 30;
}

.lookup-search-dropdown::-webkit-scrollbar {
    width: 6px;
}

.lookup-search-dropdown::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    border-radius: 10px;
}

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

.search-group-title {
    color: #757575;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    text-transform: uppercase;
}

.search-item a {
    align-items: center;
    color: #1f1f1f;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    padding: 9px 14px;
    text-decoration: none;
}

.search-item a:hover {
    background: #f5f8ff;
}

.search-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-item-duration {
    color: #6a6a6a;
    font-size: 12px;
    margin-left: 12px;
    white-space: nowrap;
}

.no-match-found {
    color: #7d7d7d;
    display: none;
    font-size: 13px;
    margin: 0;
    padding: 10px 14px;
}

@media (max-width: 1024px) {
    .lookup-search-dropdown {
        max-height: 280px;
    }
}

@media (max-width: 767px) {
    .lookup-search-shell {
        min-height: 40px;
    }

    .lookup-search-input {
        font-size: 13px;
        padding: 8px 10px;
    }

    .search-item a {
        font-size: 13px;
    }
}
