/* Search Results Container */
.acfp-search-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.acfp-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    /* Important for padding */
}

/* Ensure results are ON TOP */
.acfp-search-results {
    border: 1px solid #d1d5db;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 100%;
    /* Directly below input */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999999;
    /* Ultra High Z-Index */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.acfp-search-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background-color 0.2s;
}

.acfp-search-item:last-child {
    border-bottom: none;
}

.acfp-search-item:hover,
.acfp-search-item.processing {
    background-color: #f0f9ff;
}

.acfp-search-item strong {
    display: block;
    color: #111827;
    font-size: 14px;
}

.acfp-search-item small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-top: 2px;
}

.acfp-no-results {
    padding: 12px 16px;
    color: #9ca3af;
    text-align: center;
    font-style: italic;
    cursor: default;
}

/* Appointment Info Box */
.acfp-appointment-info {
    margin-top: 15px;
    padding: 15px;
    background: #fdf2f8;
    /* Pink/Reddish bg to match Amelia vibe or neutral */
    border: 1px solid #fbcfe8;
    border-radius: 6px;
    font-size: 14px;
    color: #831843;
}