.typing-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#typingText,
#searchInput {
    font-size: 20px;
    line-height: 1;
    height: 24px;
}

#searchInput {
    position: absolute;
    left: 0;
    width: 220px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

#typingText {
    border-right: 2px solid var(--text);
    padding-right: 5px;
    white-space: nowrap;
}

.suggestions {
    position: absolute;
    top: 34px;
    width: 220px;
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}
