/* Autocomplete Suggestions */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f9f9f9;
}

.suggestion-name {
    font-weight: 500;
    color: #333;
}

.suggestion-urdu {
    font-family: 'Noto Nastaliq Urdu', serif;
    color: #666;
    font-size: 0.9em;
}

.search-inputs {
    position: relative; /* For absolute positioning of dropdown */
}

.form-group {
    position: relative; /* For index.php inputs */
}
