.order {
    display: flex;
    justify-content: space-between;
}

.search {
    border: none;
    outline: none;
}

.pending {
    color: chocolate;
    background-color:#FFE8D0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;

}

.canceled {
    color: crimson;
    background-color: rgb(244, 168, 168);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
}

.recevied {
    background-color: #e8f8f5;
    color: #00a67d;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
}