/*
|--------------------------------------------------------------------------
| Status Badges
|--------------------------------------------------------------------------
*/

.tph-status{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;
    font-weight:600;

    white-space:nowrap;
}

.tph-status-pending{
    background:#FEF3C7;
    color:#92400E;
}

.tph-status-assigned{
    background:#DBEAFE;
    color:#1D4ED8;
}

.tph-status-in-progress{
    background:#DCFCE7;
    color:#15803D;
}

.tph-status-review{
    background:#EDE9FE;
    color:#6D28D9;
}

.tph-status-completed{
    background:#D1FAE5;
    color:#047857;
}

.tph-status-delivered{
    background:#E0F2FE;
    color:#0369A1;
}