/* === ORDER STATUS BADGES === */
.pg-account-order-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Completed / Processing - green */
.pg-account-order-status-completed,
.pg-account-order-status-processing {
    background: var(--pg-stock-in-bg);
    color: var(--pg-stock-in-text);
}

/* On-hold / Pending - orange */
.pg-account-order-status-on-hold,
.pg-account-order-status-pending {
    background: var(--pg-status-pending-bg);
    color: var(--pg-status-pending-text);
}

/* Cancelled / Failed / Refunded - red */
.pg-account-order-status-cancelled,
.pg-account-order-status-failed,
.pg-account-order-status-refunded {
    background: var(--pg-stock-out-bg);
    color: var(--pg-stock-out-text);
}


/* === EMPTY STATE === */
.pg-account-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--pg-white);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.pg-account-empty svg {
    width: 64px;
    height: 64px;
    color: var(--pg-grey-light);
    margin-bottom: 20px;
}

.pg-account-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pg-dark);
    margin: 0 0 8px;
}

.pg-account-empty-text {
    font-size: 14px;
    color: var(--pg-grey);
    margin: 0 0 24px;
}

.pg-account-empty-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--pg-galaxy);
    color: var(--pg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.pg-account-empty-btn:hover {
    background: var(--pg-galaxy-hover);
    color: var(--pg-white);
}


