.bt-category-header {
    font-weight: bold;
    background-color: #d71440;
    color: #fff;
    padding: 6px 8px;
    margin-top: 12px;
    border-radius: 4px;
    font-size: 1em;
}

.bt-inventory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.bt-item-name {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bt-item-number {
    font-size: 0.85em;
    color: #777;
    margin-top: 2px;
}

.bt-item-qty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.bt-item-qty input {
    width: 60px;
    font-size: 1em;
    padding: 6px;
}

.bt-item-uom {
    font-size: 0.8em;
    color: #555;
}

.bt-save-button {
    margin-top: 12px;
    padding: 8px 16px;
    background-color: #d71440;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bt-save-button:hover {
    background-color: #a00f33;
}
