* {
    font-family: "Twentieth Century"; 
}
.main-wrapper {
    padding: 30px;
    --bs-gutter-x: 0px !important;
}

.parent-container-for-sidebar {
    border: 1px solid #E7E7E7;
    border-radius: 15px;
    width: 248px;
}

.main-wrapper > .row {
    --bs-gutter-x: 0px !important;
    flex-wrap: nowrap !important;
    gap: 30px;
    height: calc(100vh - 200px) !important;
}

.order-details-container {
    width: calc(100% - 275px);
    border: 1px solid #E7E7E7;
    /* padding: 32px 40px; */
    border-radius: 15px;
}

.table-container {
    /* padding: 20px; */
    /* height: 400px; */
    background-color: unset;
    margin-top: unset;
    margin-left: unset;
    margin-right: unset;
    color: unset;
    
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

thead {
    background-color:#FFFAF4;
    height: 80px;
}

thead th {
    font-weight: 600;
    font-size: 19px;
    line-height: 80px;
    color: #4C4C4C;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

}

/* th, td {
    padding: 15px;
    text-align: left;
    font-size: 14px;
} */

tbody tr {
    border-bottom: 3px solid #FFFAF4;
    height: 74px;
    gap:4px;
    cursor: pointer;

}

td[data-label="Order No"],
td[data-label="Location"],
td[data-label="Date & Time"],
td[data-label="Price"] {
  font-weight: 600;
  font-size: 16px;
  line-height: 80%;
  color: #282828;
}

.status {
    width: 132px;
    height: 38px;
    font-weight: 600;
    font-size: 16px;
    line-height: 80%;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 4px;
    /* font-size: 13px;
    font-weight: bold; */
}

.status::before {
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 4px;
    margin-right: 8px;
}

.completed {
    background: #e6fff7;
    color: #00b894;
}

.completed::before {
    background-color: #00b894;
}

.cancelled {
    background: #ffecec;
    color: #e74c3c;
}

.cancelled::before {
    background-color: #e74c3c;
}

.pending {
    background: #fff3cd;
    color: #f0ad4e;
}

.pending::before {
    background-color: #f0ad4e;
}



.orders-list .order-card {
    background-color: #fff8f0;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    cursor:pointer;
}

.order-id {
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;

}

.parent-container-for-order-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-location,
.order-date {
    
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #4C4C4C;
    padding-bottom: 1px;
    display: -webkit-box;                /* Required for line-clamp to work */
    -webkit-line-clamp: 1;              /* Limit to 1 line */
    -webkit-box-orient: vertical;       /* Set direction */
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.order-amount {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
    display: inline-block;

}

.content{
    border: 1px #E7E7E7 solid;
    padding: 10px;
    border-radius: 15px;
}
.order-title{
     font-family: "Twentieth Century"; 
    font-weight: 600;
    color: #4C4C4C;
    font-size: 32px;
    line-height: 22px;
    ;

}


.order-inner-container {
    padding: 16px;
    /* border: 1px solid #E7E7E7; */
    border-radius: 12px;
    overflow-y: auto;
    height: 500px;
}

.order-heading {
    font-weight: 600;
    font-size: 32px;
    line-height: 23px;
    color: #4C4C4C;
    margin-bottom: 0px;
}

.custom-width-for-fiter-select {
    width: 216px;
    height: 40px;
}


@media(max-width:768px) {

    .order-details-container {
        width: 100%;
        padding: 15px;
    }
    .main-wrapper > .row {
        flex-wrap: wrap !important;
        height: unset !important;
    }
     .main-wrapper {
        padding: 15px;
    }

    .parent-container-for-sidebar {
        display: none;
    }
    .order-details-container{
        display: none;
    }
    .mobile-order--container{
        display: block !important;
    }
     .order-amount {
        font-size: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 10px;
    }
 }