/* CSS cho khối đơn hàng pending trong minicart */
.pending-orders-container {
    margin: 20px 20px 20px 40px;
    background-color: #fff3f3;
    border-radius: 2px;
}

.pending-orders-header {
    padding: 30px 30px 0;
    background-color: #fff3f3;
    align-items: center;
}

.pending-orders-header strong {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.pending-orders-list {
    padding: 0 30px;
}

.pending-order-item {
    padding: 15px 0;
    border-bottom: 1px solid #d9d9d9;
}

.pending-order-item:last-child {
    border-bottom: none;
    padding-bottom: 30px;
}

.pending-order-info {
    margin-bottom: 8px;
}

.pending-order-id {
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.pending-order-status {
    color: #000000;
    font-size: 13px;
}

.pending-order-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pending-order-actions .pending-order-action {
    font-size: 14px;
    color: #720017;
    font-weight: 500;
}

.pending-order-timer {
    color: #727272;
    font-size: 13px;
}
