/* Inventory Dashboard */

.stat-card.stat-danger .stat-icon {
    background: #ef4444;
}

/* Badges use the canonical .badge styles in v2-styles.css (National-Accounts pill). */

/* Modal autocomplete styles */
.form-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

#transaction-modal .modal-body,
#transfer-modal .modal-body {
    overflow: visible;
}

.autocomplete-wrapper {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: #f0fdf4;
    color: #059669;
}

.autocomplete-item .item-sku {
    font-size: 12px;
    color: #6b7280;
    margin-left: 6px;
}

.autocomplete-no-results {
    padding: 10px 12px;
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
}
