.rahi-search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 999; /* Header mein hone par zaroori */
}
.rahi-search-form {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}
.rahi-search-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}
.rahi-search-submit {
    background-color: #f7f7f7;
    color: #333;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.rahi-search-submit:hover {
    background-color: #eee;
}

/* --- Dropdown Styling --- */
.rahi-live-results-dropdown {
    position: absolute;
    top: 100%; /* Form ke theek neeche */
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none; /* Default hide */
    z-index: 1000;
}
.rahi-live-results-dropdown.active {
    display: block;
}

.rahi-live-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}
.rahi-live-item:hover {
    background-color: #f5f5f5;
}

.rahi-live-item-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

.rahi-live-item-details {
    flex-grow: 1;
}

.rahi-live-item-name {
    font-size: 14px;
    font-weight: 600;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rahi-live-item-price {
    font-size: 12px;
    color: #0a8041; /* Primary green color for price */
    font-weight: 500;
}

.rahi-no-results {
    padding: 15px;
    text-align: center;
    color: #777;
    font-style: italic;
}