/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.boom-automatic-provider-orders-public {
    display: block;
}

/* Purchase order status styles for frontend */
.purchase-order-status {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.purchase-order-status.pending {
    background-color: #ffb900;
    color: #fff;
}

.purchase-order-status.confirmed {
    background-color: #00a0d2;
    color: #fff;
}

.purchase-order-status.shipped {
    background-color: #46b450;
    color: #fff;
}

/* Provider portal styles if needed */
.provider-portal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.provider-portal .purchase-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.provider-portal .purchase-orders-table th,
.provider-portal .purchase-orders-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.provider-portal .purchase-orders-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.provider-portal .purchase-orders-table tr:hover {
    background-color: #f9f9f9;
}
