/* guillotine.css — Guillotine module styles */

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}
.badge-success   { background: #d4edda; color: #155724; }
.badge-primary   { background: #cce5ff; color: #004085; }
.badge-secondary { background: #e2e3e5; color: #383d41; }
.badge-info      { background: #d1ecf1; color: #0c5460; }
.badge-warning   { background: #fff3cd; color: #856404; }
.badge-danger    { background: #f8d7da; color: #721c24; }

/* --- Autocomplete dropdown --- */
.guillotine-ac-item {
    padding: 5px 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.guillotine-ac-item.hover { background: #e8f0fe; }
.guillotine-ac-stock      { font-size: 11px; margin-left: 10px; white-space: nowrap; }
.guillotine-ac-stock.ok   { color: #2e7d32; }
.guillotine-ac-stock.low  { color: #c62828; }
