/* autocomplete.css */

.autocomplete-dropdown {
    position: absolute;
    background: rgba(10, 0, 23, 0.98);
    border: 1px solid rgba(114, 9, 183, 0.2);
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    width: calc(100% - 2px);
    z-index: 1000;
    color: #b0b0b0;
}

.autocomplete-item {
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.autocomplete-item:hover {
    background: rgba(114, 9, 183, 0.15);
    color: #ffffff;
}

.ghost-wrapper {
    position: relative;
    width: 100%;
}

.ghost-input {
    position: relative;
    background-color: transparent;
    color: #e0e0e0;
    z-index: 2;
}

.ghost-text {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none;
    font-family: inherit;
    font-size: inherit;
    z-index: 1;
    white-space: pre;
    width: 100%;
    overflow: hidden;
}
