/**
 * 2025 Bullmade
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    Bullmade <contact@bullmade.com>
 * @copyright 2025 Bullmade
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Front-end styles for Business Central integration */
/* This module primarily operates in the admin area, so front-end styles are minimal */

.bm-bc-order-status {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.bm-bc-order-status p {
    margin: 5px 0;
}

.bm-bc-order-status .status-label {
    font-weight: bold;
    margin-right: 5px;
}

.bm-bc-status-badge {
    display: inline-block;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 10px;
}

.bm-bc-status-success {
    background-color: #5cb85c;
}

.bm-bc-status-pending {
    background-color: #f0ad4e;
}

.bm-bc-status-error {
    background-color: #d9534f;
}

.bm-bc-status-none {
    background-color: #777;
}
