/* OpenCart autosuggest — styled to match MyInvoice green palette */

.oc-suggest-dropdown {
    position: absolute;
    z-index: 9999;
    display: none;
    background: #fff;
    border: 1px solid #c7e675;      /* primary-300 */
    border-top: 3px solid #99cc33;  /* primary-500 */
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
    font: 14px/1.4 system-ui, -apple-system, sans-serif;
    color: #15131d;
    max-height: 360px;
    overflow: hidden;
}
.oc-suggest-dropdown.is-open { display: flex; flex-direction: column; }

.oc-suggest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: #f7fced;            /* primary-50 */
    border-bottom: 1px solid #dcefaa; /* primary-200 */
    font-size: 12px;
    color: #506d22;                  /* primary-800 */
}
.oc-suggest-title { font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

.oc-suggest-currency {
    font: inherit;
    padding: 2px 6px;
    border: 1px solid #b2da4f;
    border-radius: 4px;
    background: #fff;
    color: #425a20;
}

.oc-suggest-body {
    overflow-y: auto;
    max-height: 320px;
}
.oc-suggest-body[data-state="empty"] { padding: 8px 12px; color: #7A748C; font-size: 13px; }

.oc-suggest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}
.oc-suggest-item:last-child { border-bottom: none; }
.oc-suggest-item:hover { background: #f7fced; }

.oc-suggest-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.oc-suggest-price {
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    color: #506d22;                  /* primary-800 */
    font-weight: 600;
}

.oc-suggest-empty { font-style: italic; }
