.port-search-panel {
    position: absolute;
    z-index: 99999;           /* über ALLEM */

    background: #f9fafb;      /* Variante B */
    opacity: 1 !important;    /* 100% deckend */

    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,.22);

    width: 340px;
    margin-top: 0;

    pointer-events: auto;
}

.port-search-header {
    padding: 2px;
    border-bottom: 1px solid #e5e7eb;
    background: #f3f4f6; /* etwas dunkler als der Panel-Hintergrund */
}

.port-search-input {
    width: 300px;      /* statt 100% */
    max-width: 100%;   /* damit es nicht überläuft */
    padding: 6px 8px;  /* etwas kompakter */
    font-size: 14px;
}

.port-search-input:focus {
    outline: none;
    border-color: #4f46e5; /* indigo */
    box-shadow: 0 0 0 1px rgba(79,70,229,.2);
}

.port-search-hint {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

/* RESULTS */
.port-search-results {
    max-height: 320px;
    overflow-y: auto;
}

/* ITEMS */
.port-search-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.port-search-item:last-child {
    border-bottom: none;
}

.port-search-item:hover {
    background: #f3f4ff;
}

.port-search-title {
    font-weight: 600;
    color: #111;
}

.port-search-subtitle {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

/* EMPTY / ERROR STATES */
.port-search-empty,
.port-search-error {
    padding: 12px;
    font-size: 13px;
    color: #666;
}

.port-search-error {
    color: #b91c1c; /* red */
}
}