/* ----------------------------------------
   BEAUTIFUL PILL-SHAPED SEARCH BAR (NEW)
-----------------------------------------*/

#search-container {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 650px;

    z-index: 999999;
    pointer-events: none;
}

/* MAIN PILL */
.search-pill {
    display: flex;
    flex-direction: row;
    width: 100%;
    pointer-events: auto;

    background: #0f8f84; /* teal (input background) */
    border-radius: 40px;
    padding: 6px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);

    align-items: center;
}

/* SEARCH BUTTON */
.search-btn {
    background: #4cc13c; /* green like example */
    color: white;
    border: none;

    padding: 10px 22px;
    font-size: 15px;
    font-weight: 700;

    border-radius: 30px;

    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s ease;
    font-family: inherit;
}

.search-btn:hover {
    background: #3aa62f;
}

/* INPUT FIELD */
#searchBox {
    flex-grow: 1;
    border: none;
    background: transparent;

    padding: 12px 18px;
    font-size: 16px;

    color: white;
    outline: none;
    direction: rtl;
    font-family: inherit;
}

#searchBox::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* SEARCH RESULTS BOX */
#searchResults {
    margin-top: 8px;

    width: 100%;
    background: white;
    border-radius: 18px;
    padding: 6px 0;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    max-height: 300px;
    overflow-y: auto;

    display: none;
    pointer-events: auto;
}

/* RESULT ITEM */
.search-item {
    padding: 12px 16px;
    font-size: 15px;
    cursor: pointer;
    direction: rtl;
}

.search-item:hover {
    background: #eef5ff;
}
