@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    /* overflow: hidden; */
}

:root {
    --primary-font: "Roboto", sans-serif;
    --secondary-font: "Roboto", sans-serif;
    --primary-color: #344e9f;
    --secondary-color: #d73135;
    --theme-light-color: #fffafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/* header section style start */

.headersection {
    padding: 10px 20px 10px;
    position: relative;
    z-index: 9;
    background: #fff;
    width: 100%;
}

.headersection .headersectionbox {
    display: flex;
    justify-content: space-between;
    /* width: 100%; */
    /* background: #fff; */
}

.headersection .headersectionbox .headerleftbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.headersection .headersectionbox .headerleftbox .headermenubtn {}

.headersection .headersectionbox .headerleftbox .headermenubtn a {}

.headersection .headersectionbox .headerleftbox .headermenubtn a img {
    width: 30px;
}

.headersection .headersectionbox .headerleftbox .headerlogoimg {
    width: 100px;
}

.headersection .headersectionbox .headerleftbox .headerlogoimg a {}

.headersection .headersectionbox .headerleftbox .headerlogoimg a img {
    width: 100%;
}

.headersection .headersectionbox .headerleftbox .headerneworderbtn {}

.headersection .headersectionbox .headerleftbox .headerneworderbtn a {
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.headersection .headersectionbox .headerleftbox .headersearchbtn {
    border: 1px solid #c5c5c5;
    padding: 5px 20px;
    width: max-content;
    border-radius: 5px;
}

.headersection .headersectionbox .headerleftbox .headersearchbtn input[type="text"] {
    background: transparent;
    border: unset;
    width: 60px;
    outline: unset;
    font-size: 14px;
}

.headersection .headersectionbox .headerrightbox {
    display: flex;
    align-items: center;
    gap: 20px;
}

.headersection .headersectionbox .headerrightbox .headercontactbox {
    display: flex;
    border: 1px solid #000000;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-radius: 5px;
}

.headersection .headersectionbox .headerrightbox .headercontactbox .icon {
    border: 1px solid #ffc5c6;
    background: #ffc5c6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headersection .headersectionbox .headerrightbox .headercontactbox .icon i {}

.headersection .headersectionbox .headerrightbox .headercontactbox .text {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--primary-font);
}

.headersection .headersectionbox .headerrightbox .headerright {}

.headersection .headersectionbox .headerrightbox .headerright ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.headersection .headersectionbox .headerrightbox .headerright ul li {}

.headersection .headersectionbox .headerrightbox .headerright ul li a {}

.headersection .headersectionbox .headerrightbox .headerright ul li a img {
    width: 25px;
}

.menusidebar{
    position: absolute;
    top: 100%;
    left: -100%;
    width: 20%;
    background: #4a4a4a;
    box-shadow:2px 0 12px rgba(0,0,0,0.15);
    transition:0.3s;
    z-index: 999;
    height: 90vh;
    overflow: hidden;
    overflow-y: scroll;
}

.menusidebar.active{
    left:0;
}

.menusidebar ul{
    list-style:none;
}
.menusidebar ul li {}
.menusidebar ul li a{
    padding:12px 10px;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    border-radius:6px;
    cursor:pointer;
    color: #fff;
}

.menusidebar ul li a span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menusidebar ul li a span i {
    color: #fff;
}

.menusidebar ul li:hover{
    background: #3a3a3a;
}

.menusidebar ul li i{
    width:20px;
    color:#e74c3c;
}

.menusidebarsubmenu {
    position: relative;
    bottom: 130%;
    width: 100%;
    left: 0;
    right: 0;
    background: #525252;
    transition: all .3s ease;
}

.menusidebar ul li.dropdownli {
    overflow: hidden;
}

.menusidebarsubmenu ul {
}

.menusidebarsubmenu ul li {}

.menusidebarsubmenu ul li a {border-radius: 0;font-size: 14px;letter-spacing: 0.7px;padding: 9px 10px;}

.menusidebarsubmenu.active {display: block;}

.menusidebar .overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    display:none;
    z-index:1000;
}

.menusidebar .overlay.active{
    display:block;
}


/* header section style end */

/* table section style start */

.tablesection {
    padding: 0 20px;
}

.tablesection .tableheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tablesection .tableheader .tableheaderleft {}

.tablesection .tableheader .tableheaderleft h3 {
    font-size: 16px;
    color: #4c4c4c;
    font-weight: 500;
}

.tablesection .tableheader .tableheaderright {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tablesection .tableheader .tableheaderright .refresh {}

.tablesection .tableheader .tableheaderright .refresh a {
    width: 30px;
}

.tablesection .tableheader .tableheaderright .refresh a img {
    width: 100%;
}

.tablesection .tableheader .tableheaderright .tableheaderrightbox {}

.tablesection .tableheader .tableheaderright .tableheaderrightbox ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tablesection .tableheader .tableheaderright .tableheaderrightbox ul li {}

.tablesection .tableheader .tableheaderright .tableheaderrightbox ul li a {
    background: var(--secondary-color);
    padding: 5px 20px;
    color: #fff;
    border-radius: 5px;
}

.tablemiddlebox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 0;
}

.tablemiddlebox .tablemiddleleftbox {}

.tablemiddlebox .tablemiddleleftbox ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tablemiddlebox .tablemiddleleftbox ul li {}

.tablemiddlebox .tablemiddleleftbox ul li a {
    background: var(--secondary-color);
    padding: 7px 20px;
    color: #fff;
    border-radius: 5px;
}

.tablemiddlebox .tablemiddlerightbox {}

.tablemiddlebox .tablemiddlerightbox ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tablemiddlebox .tablemiddlerightbox ul li {}

.tablemiddlebox .tablemiddlerightbox ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #404040;
    font-weight: 400;
}

.tablemiddlebox .tablemiddlerightbox ul li.move a {

    border: 1px solid #dfdfdf;

    padding: 5px 15px;

    background: #eeeeee;
}

.tablemiddlebox .tablemiddlerightbox ul li a span {
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 1px solid;
    border-radius: 50%;
}

.tablemiddlebox .tablemiddlerightbox ul li a span.move {
    background: #fff;
    border-color: #fff;
}

.tablemiddlebox .tablemiddlerightbox ul li a span.blank {
    background: #eee;
    border-color: #eee;
}

.tablemiddlebox .tablemiddlerightbox ul li a span.running {
    background: #a8f0ff;
    border-color: #a8f0ff;
}

.tablemiddlebox .tablemiddlerightbox ul li a span.printing {
    background: #bdffb1;
    border-color: #bdffb1;
}

.tablemiddlebox .tablemiddlerightbox ul li a span.paid {
    background: #ffe4bb;
    border-color: #ffe4bb;
}

.tablemiddlebox .tablemiddlerightbox ul li a span.running-kot {
    background: #ffe999;
    border-color: #ffe999;
}

.tablebook {
    padding: 20px 0;
}

.tablebook .tablebookbox {
    margin: 0 0 20px;
}

.tablebook .tablebookbox .tabletitle {
    margin: 0 0 10px;
}

.tablebook .tablebookbox .tabletitle h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: var(--primary-font);
    letter-spacing: .5px;
}

.tablebook .tablebookbox .tablecountbox {
    justify-content: start;
    display: grid;
    grid-template-columns: repeat(auto-fill, 90px);
    gap: 13px;
}

.tablebook .tablebookbox .tablecountbox .tablecount {

}

.tablebook .tablebookbox .tablecountbox .tablecount a {
    height: 90px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    flex-direction: column;
    position: relative;
}

.tablebook .tablebookbox .tablecountbox .tablecount a.running {
    background: #a8f0ff;
}

.tablebook .tablebookbox .tablecountbox .tablecount a.paid {
    background: #ffe4bb;
}

.tablebook .tablebookbox .tablecountbox .tablecount a.printing {
    background: #bdffb1;
}

.tablebook .tablebookbox .tablecountbox .tablecount a.running-kot {
    background: #ffe999;
}

.tablebook .tablebookbox .tablecountbox .tablecount a.blank {
    background: #ccf6ff;
}

.tablebook .tablebookbox .tablecountbox .tablecount a span {
    font-size: 14px;
    font-weight: 400;
    color: #343434;
}
.tablebook .tablebookbox .tablecountbox .tablecount a span:nth-child(2) {
    font-weight: 700;
    color: #000;
}
.tablebook .tablebookbox .tablecountbox .tablecount a .icon {
    position: absolute;
    border: 1px solid #000;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -20%;
    background: #fff;
    border-radius: 5px;
    padding: 2px;
}

.tablebook .tablebookbox .tablecountbox .tablecount a .icon img {
    width: 20px;
}

/* table section style end */

/* orderbook page style start */

.orderbooksection {
    display: flex;
}

.orderbooksection .orderbooksidebar {
    width: 15%;
    background: #4a4a4a;
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: 90vh;
    overflow-y: scroll;
}
.orderbooksection .orderbooksidebar::-webkit-scrollbar{
    width: 5px;
    border-radius: 5px;
}
.orderbooksection .orderbooksidebar::-webkit-scrollbar-thumb{
    background: #000;
}
.orderbooksection .orderbooksidebar .ordermaincat {}

.orderbooksection .orderbooksidebar .ordermaincat .maincat {
    width: 100%;
    color: #fff;
    padding: 10px 15px;
    cursor:pointer;
    border-bottom: 1px solid #6e6e6e;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.orderbooksection .orderbooksidebar .ordermaincat .maincat.active {
    background: #029ede;
    font-weight:600;
}

.orderbooksection .orderbooksidebar .ordermaincat .maincat:not(.active) {
}

.orderbooksection .orderbooksidebar .ordersubcat {
    display: none;
}

.orderbooksection .orderbooksidebar .ordersubcat ul {}

.orderbooksection .orderbooksidebar .ordersubcat ul li {
    padding: 10px 20px;
    border-bottom: 1px solid #c1c1c1;
    cursor:pointer;
    font-size:14px;
    color: #fff;
}

.orderbooksection .orderbooksidebar .ordersubcat ul li.active {}

.orderbookmidsection {
    width: 45%;
    border-right: 1px solid #c9c9c9;
}

.orderbookmidsection .orderbookmidheader {
    background: #444444;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    width: 100%;
    height: 45px;
}

.orderbookmidsection .orderbookmidheader .searchbar {
    width: 50%;
}

.orderbookmidsection .orderbookmidheader .searchbar form {
    position: relative;
}

.orderbookmidsection .orderbookmidheader .searchbar form .searchsubmit {
    position: absolute;
    border: unset;
    background: unset;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
}

.orderbookmidsection .orderbookmidheader .searchbar form .searchsubmit svg {
    fill: #b3b3b3;
    width: 16px;
}

.orderbookmidsection .orderbookmidheader .searchbar form .searchsubmit svg path {
    fill: #606060;
}

.orderbookmidsection .orderbookmidheader .searchbar form input[type="text"] {
    padding: 4px 25px;
    width: 100%;
    font-size: 14px;
}
.orderbookmidsection .orderbookmidheader .searchbar form#searchprodcode input[type="text"] {
    padding: 4px 5px;
}

.orderbookmainbox {
    height: 82vh;
    overflow: hidden;
    overflow-y: scroll;
}

.orderbookmainbox .orderproductbox {
    flex: 1;
    padding:10px;
    overflow:auto;
}

.orderbookmainbox .orderproductbox ul {
    display: flex;
    gap:10px;
    flex-wrap: wrap;
}

.orderbookmainbox .orderproductbox ul li.item {
    background:#fff;
    border:1px solid #ddd;
    border-left:4px solid #4caf50;
    padding:12px;
    border-radius:4px;
    font-size:14px;
    padding: 10px;
    border-radius:4px;
    font-size: 14px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23%;
}
.orderbookmainbox .orderproductbox ul li.item.egg {
    border-left: 4px solid #ffc107;
}

.orderbookmainbox .orderproductbox ul li.item.nonveg {
    border-left: 4px solid #ff0000;
}
.orderbookrightsection {
    width: 40%;
    overflow: hidden;
    /* height: 89vh; */
    position: relative;
}

.orderbookrightsection .orderbookrighthead {
    background: #4a4a4a;
    height: 45px;
}

.orderbookrightsection .orderbookrighthead ul {
    display: flex;
    align-items: center;
    height: 100%;
}

.orderbookrightsection .orderbookrighthead ul li {
    background: var(--secondary-color);
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orderbookrightsection .orderbookrighthead ul li a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pp-modal-overlay{
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background:rgba(0,0,0,.4);
    display:none;
    justify-content:center;
    align-items:center;
    z-index: 999;
}
.pp-modal-overlay .pp-modal{background:#fff;border-radius:4px;min-width: 60%;overflow: hidden;max-height: 510px;width: 60%;}
.pp-modal-overlay .pp-modal .pp-modal-header, .pp-modal-overlay .pp-modal .pp-modal-footer{padding:10px;border-bottom:1px solid #ddd;display: flex;justify-content: space-between;align-items: center;}
.pp-modal-overlay .pp-modal .pp-modal-header h3 {
    font-size: 18px;
    color: #000;
}
.pp-modal-footer{border-top:1px solid #ddd;text-align:right}
.pp-modal-overlay .pp-modal .pp-modal-body{padding:15px;display: inline-block;width: 100%;max-height: 400px;px; */overflow: hidden;overflow-y: scroll;}
.pp-modal-body .waitersection {
    display: flex;
    flex-direction: column;
}

.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-tabs{
    display:flex;
    border-bottom:1px solid #ddd;
    margin-bottom: 0px;
}

.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-tabs .split-tab{
    padding:10px 20px;
    border:none;
    background:#f5f5f5;
    cursor:pointer;
    margin-right:5px;
}

.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-tabs .split-tab.active{
    background:#fff;
    border-bottom:2px solid #d32f2f;
    color:#d32f2f;
    font-weight:600;
}

.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-content{display:none;padding: 10px 20px;}
.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-content.active{ display:block; }
.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox {
    border: 1px solid #e0e0e0;
    width: 100%;
}

.split-content button.add-more-percent {
    padding: 5px 20px;
    background: #00ab1d;
    border: 1px solid #00ab1d;
    color: #fff;
    border-radius: 2px;
}
.split-content input{
    width:100%;
    padding:8px;
    margin:6px 0 12px;
}

.btn-add{
    background:#d32f2f;
    color:#fff;
    border:none;
    padding:6px 12px;
    cursor:pointer;
}

.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-content .item-split-wrapper{
    display:flex;
    gap:15px;
}

.item-list, .item-part{
    border:1px solid #ddd;
    padding:10px;
    width:33%;
}

.item-head{
    background:#d32f2f;
    color:#fff;
    padding:6px;
    margin-bottom: 10px;
    display:flex;
    justify-content:space-between;
    font-size: 14px;
}
.pp-modal-body .waitersection label {
    display: flex;
    align-items: center;
}

.pp-modal-body .waitersection label input[type="radio"] {
    width: max-content;
    margin: 0 10px;
}
.pp-modal-body input, .pp-modal-body textarea, .pp-modal-body select{
    padding:7px;
    margin-bottom:10px;
    border:1px solid #ccc;
}
.btn-red{background:#d32f2f;color:#fff;border:none;padding:6px 14px}
.btn-grey{background:#eee;border:1px solid #ccc;padding:6px 14px}
.pp-close{cursor:pointer;font-size:20px;color: #000;}

.pp-modal-footer{
  padding:10px;
  text-align:right;
  border-top:1px solid #ddd;
}

.item-row{
    display:block;
    margin-bottom:6px;
    cursor:pointer;
}

.item-part{
    border:1px solid #ddd;
    padding: 5px;
    margin-right:10px;
    width:180px;
    cursor:pointer;
}

.item-part.active{
    border-color:#d32f2f;
    background:#fff5f5;
}

.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-content .item-split-wrapper label {
    display: flex;
    padding: 0 10px;
    font-size: 14px;
}

.pp-modal-overlay .pp-modal .pp-modal-body .splitbillbox .split-content .item-split-wrapper label input.item-check {
    width: max-content;
    margin: 0;
    margin-right: 5px;
}

.item-head button.add-to-part {
    width: max-content;
    padding: 0px 10px;
    background: #fff;
    border: unset;
}

.item-parts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.part-item{
    color: #000;
    padding: 2px 8px;
    margin-bottom:5px;
    display:flex;
    border-radius:3px;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.remove-item{
    cursor:pointer;
    font-weight:bold;
    font-size: 12px;
}

.orderbookrightsection .orderbookmidbox {}

.orderbookrightsection .orderbookmidbox .orderbookmidheadbox ul {
    display: flex;
    border-bottom: 1px solid #d2d2d2;
}

.orderbookrightsection .orderbookmidbox .orderbookmidheadbox ul li {
    width: 10%;
    padding: 20px 35px;
    border-right: 1px solid #d2d2d2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orderbookrightsection .orderbookmidbox .orderbookmidheadbox ul li a {
    position: relative;
}

.orderbookrightsection .orderbookmidbox .orderbookmidheadbox ul li a span {
    position: absolute;
    bottom: -80%;
    left: 50%;
    transform: translateX(-50%);
    color: #ff0000;
    font-weight: 500;
    font-size: 15px;
}

.orderbookrightsection .orderbookmidbox .orderbookmidheadbox ul li a img {
    width: 25px;
}

.orderbookrightsection .orderbookmidbox .orderbookmidheadbox {}
.empty-order {
    width: 100%;
    display: flex;
    padding: 10px 15px;
}
.orderbookrightsection .orderbookmidbox .orderitemsection {}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitemsectionhead {
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitemsectionhead ul {
    display: flex;
    justify-content: space-between;
    background: #eeeeee;
    padding: 10px 20px;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitemsectionhead ul li {
    font-size: 14px;
    font-weight: 600;
    color: #898989;
    text-transform: uppercase;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem {
    height: 205px;
    overflow: hidden;
    overflow-y: scroll;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem::-webkit-scrollbar{
    width: 3px;
    border-radius: 5px;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem::-webkit-scrollbar-thumb{
    background: #d9d9d9;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #d3d3d3;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li {
    position: relative;
    width: 30%;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li.itemqty {
    text-align: center;
    justify-content: center;
    display: flex;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li.itemprice {text-align: right;}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li a.delete {
    text-decoration: none!important;
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0!important;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li.itemprice span {
    text-align: right;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li .delete i {
    width: 17px;
    height: 17px;
    background: red;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li.itemname a {
    display: inline-block;
    font-size: 14px;
    color: #222222;
    font-weight: 500;
    text-decoration: underline;
    padding-left: 20px;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li .quantitybox {
    display: flex;
    align-items: center;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li .quantitybox .qtybtn {
    width: 18px;
    margin: 0 5px;
    height: 20px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid #cdcdcd;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li .quantitybox .quantity {
    width: 40px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #cdcdcd;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li span {
    display: block;
    padding: 0;
    line-height: 0.5;
    font-weight: 700;
    color: #3a3a3a;
    font-size: 14px;
    text-align: left;
    padding-left: 20px;
}
.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li span.notes {
    font-size: 12px;
    color: #8f7f7f;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 1px 0 0 20px;
}

.orderbookrightsection .orderbookmidbox .orderitemsection .orderitem ul li a {
    display: inline-block;
    font-size: 14px;
    color: #8f7f7f;
    font-weight: 500;
    text-decoration: underline;
}

.payment-bar{background:#3a3a3a;color:#fff;border-radius:4px;overflow:hidden}
.top-row{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;background:#4a4a4a}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxupperbox .left-actions button{background:#d32f2f;border:none;color:#fff;padding: 5px 10px;margin-right:6px;border-radius:3px;font-size:13px;cursor:pointer}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxupperbox .left-actions button.split{background:#c62828}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxupperbox .left-actions label{font-size: 14px;margin-left:10px;color: #fff;}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxupperbox .total{font-size: 18px;color: #ffca28;font-weight: 600;}


.middle-row{display:flex;align-items:center;gap:20px;padding:10px 12px;background:#3a3a3a}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxmidbox .pay-option{display:flex;align-items:center;gap:6px;color: #fff;font-size:14px}


.bottom-row{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;background:#2f2f2f}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxbottombox .checks{display:flex;align-items:center;gap:20px;font-size:14px;justify-content: center;color: #fff;}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxbottombox .checks input{margin-right:6px;color: #fff;}


.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxbottom .actions button{background:#d32f2f;border:none;color:#fff;padding: 8px 15px;border-radius:3px;font-size:14px;cursor:pointer;width: max-content;}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxbottom .actions button.dark{background:#555}

.orderbookbottombox {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 999;
    background: #4a4a4a;
}

.orderbookbottombox .orderbookbottomboxupper {
    background: #4a4a4a;
}
.orderbookbottombox .orderbookbottomboxupper .upperboxbtn {
    width: 10%;
    background: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5%;
    height: 30px;
    border-radius: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    cursor: pointer;
}
.paymentcalculationbox {position: absolute;bottom: -140%;width: 100%;background: #6f6f6f;height: 150px;overflow: hidden;overflow-y: scroll;padding: 5px 0;transition: all .3s ease;z-index: -3;}
.paymentcalculationbox.active {
    bottom: 100%;
}
.upperboxclosebtn {
    width: 10%;
    background: #4a4a4a;
    display: flex;
    align-items: end;
    justify-content: center;
    position: absolute;
    top: -5%;
    height: 30px;
    border-radius: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    cursor: pointer;
    padding-bottom: 4px;
}
.paymentcalculationbox .paymentcalbox {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #7a7a7a;
}

.paymentcalculationbox .paymentcalbox .paymentcalleft {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.paymentcalculationbox .paymentcalbox .paymentcalright {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.paymentcalculationbox .paymentcalbox .paymentcalleft a {
    display: inline-block;
    /* background: #fff; */
    font-size: 12px;
    padding: 0px 5px;
    color: #000000;
    text-decoration: underline;
}

.paymentcalculationbox .paymentcalbox .paymentcalright input[type="text"] {
    width: 40%;
    float: right;
    text-align: right;
}

.paymentcalculationbox .paymentcalbox .paymentcalleft .remove {
    display: inline-block;
    background: #000;
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px 0 0;
    cursor: pointer;
}

.paymentcalculationbox .paymentcalbox .paymentcalleft .remove i {
    font-size: 12px;
}

.discountpopup {
    width: 100%;
}

.discountpopup .optionbox {}

.discountpopup .optionbox label {
    display: block;
}

.discountpopup .optionbox select {
    width: 100%;
    padding: 7px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.discountpopup .inputbox {
}

.discountpopup .inputbox input[type="text"] {}

.discountpopup .inputbox label {}

.discountpopup .inputbox label input[type="radio"] {}

.discountpopup .inputbox a {}

.discountpopup .inputbox button {}
.discountpopup .radiobox .radioboxx {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.discountpopup .radiobox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.discountpopup .radiobox input[type="text"] {
    width: 100%;
    padding: 3px;
    text-align: right;
}

.discountpopup .couponbox h3 {
    font-size: 20px;
    display: inline-block;
}

.discountpopup .radiobox label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.discountpopup .radiobox label input[type="radio"] {
    margin: unset;
}

.discountpopup .couponbox {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 0;
}

.discountpopup .couponbox .couponboxx input[type="text"] {
    width: 70%;
    margin: 0;
}
.discountpopup .couponbox .couponboxx {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.discountpopup .couponbox button {
    width: 20%;
    padding: 5px 25px;
    font-size: 14px;
    background: #49c386;
    border: 1px solid #4adb8f;
    color: #fff;
    font-weight: 700;
}
.discountpopup .couponbox a {
}

.applied-tax-popup .tax-head{
    display:flex;
    justify-content:space-between;
    background:#333;
    color:#fff;
    padding:8px;
    width: 100%;
}
.applied-tax-popup .tax-row{
    display:flex;
    justify-content:space-between;
    padding:8px;
    border-bottom:1px solid #eee;
}
.applied-tax-popup .add-tax{
    display:flex;
    gap:6px;
    padding:8px;
}
.applied-tax-popup {
    width: 100%;
}

.applied-tax-popup .tax-row label {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.applied-tax-popup .tax-row label input[type="checkbox"] {
    width: max-content;
    margin-bottom: 0;
    margin-right: 5px;
}

.applied-tax-popup .add-tax button {
    width: max-content;
    padding: 5px 30px;
    font-size: 14px;
    background: #00c722;
    border: 1px solid #00c722;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.applied-tax-popup .add-tax input{
    flex:1;
    padding:5px;
    margin: 0;
}
.applied-tax-popup .tax-footer{
    text-align:right;
    padding-top:10px;
}

.orderbookbottombox .orderbookbottomboxupper .upperboxbtn i {}
.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxupperbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}

.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxupperbox .left-actions {
    display: flex;
    align-items: center;
}

.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxmidbox {
    background: #6f6f6f;
    display: flex;
    padding: 15px 70px 15px 25px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxbottombox {
    padding: 15px 0;
}

.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxbottom {
    background: #fff;
    padding: 10px 10px 10px;
    width: 100%;
}

.orderbookbottombox .orderbookbottomboxupper .orderbookbottomboxbottom .actions {
    display: flex;
    justify-content: space-between;
}

/* orderbook page style end */

/* Menu & Discount section style start */

.menupage{
    padding:15px;
    font-family:Arial;
}

.menupage .breadcrumb{
    font-size:14px;
    margin-bottom:10px;
    color:#555;
}

.menupage .menutabs{
    display:flex;
    gap: 0px;
    margin-bottom:15px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: #e6f3ff;
}

.menupage .menutabs a.itembox{
    padding:8px 15px;
    border:none;
    background: transparent;
    cursor:pointer;
    border-radius:6px;
    width: 15%;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-align: center;
}

.menupage .menutabs a.itembox.active{
    background: #fff;
    color: #000;
    border: 2px solid #54acff;
}

.menupage .menubody{
    display:flex;
    gap:15px;
}
.menupage .menubody .menucategorybox{
    width:250px;
    background:#fff;
    border-radius:8px;
    padding:10px;
}

.menupage .menubody .menucategorybox select{
    width:100%;
    padding:8px;
    margin-bottom:10px;
}

.menupage .menubody .menucategorybox .menucategorylist{
    list-style:none;
    padding:0;
    margin:0;
}

.menupage .menubody .menucategorybox .menucategorylist li{
    padding:10px;
    border-radius:6px;
    cursor:pointer;
    transition: all .3s ease;
}

.menupage .menubody .menucategorybox .menucategorylist .active, .menupage .menubody .menucategorybox .menucategorylist li:hover{
    background: #efefef;
    color: #000;
}

.menupage .menubody .menuitemsbox{
    flex:1;
    background:#fff;
    border-radius:8px;
    padding:10px;
}

.menupage .menubody .menuitemsbox .menuitemstable thead {
    background: #eee;
}

.menupage .menubody .menuitemsbox .menuitemstable thead th {
    font-weight: 600;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
}

.menupage .menubody .menuitemsbox .menuitemactions label {
    padding: 5px 12px;
    border: 1px solid #ddd;
    color: #767676;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.menupage .menubody .menuitemsbox .menuitemactions {display: flex;align-items: center;justify-content: space-between;width: 100%;margin: 0 0 10px;}

.menupage .menubody .menuitemsbox .menuitemactions .btn{
    padding:7px 12px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    border-radius:6px;
}

.menupage .menubody .menuitemsbox .menuitemactions .btn.red{
    background:#e53935;
    color:#fff;
    border:none;
}

.available{
    display:flex;
    align-items:center;
    gap:5px;
}

.dot{
    width:10px;
    height:10px;
    background:green;
    border-radius:50%;
}

.menuitemsbox .menuitemstable{
    width:100%;
    border-collapse:collapse;
    font-size:14px;
}

.menuitemstable th,
.menuitemstable td{
    padding:10px;
    border-bottom:1px solid #eee;
    font-weight: 400;
}

.actions i{
    margin-right:10px;
    cursor:pointer;
}

.menuitemsbox .menuitemactions .menuleftactions {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 70%;
}

.menuitemsbox .menuitemactions .menuleftactions input[type="text"] {
    width: 30%;
    border: 1px solid #ccc;
    padding: 5px 10px;
}

.menuitemsbox .menuitemactions .menuleftactions .actionbtn {
    width: 22%;
    border: 1px solid #ccc;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #df0000;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.menuitemsbox .menuitemactions .menurightactions {}

.menuitemsbox .menuitemactions .menurightactions a {
    background: #3f6ad8;
    border: 1px solid #ccc;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    cursor: pointer;
    width: 100%;
}

.menuitemsbox .menuitemactions .menurightactions a i {
    font-size: 14px;
    margin-right: 5px;
}

.menupage .menubody .menucategoriesbox {
    width: 100%;
}

.menupage .menubody .menucategoriesbox .menusubtabs{
    display:flex;
    gap:25px;
    border-bottom:1px solid #eee;
    margin-bottom:15px;
}

.menupage .menubody .menucategoriesbox .menusubtabs a{
    padding:10px 0;
    background:none;
    border:none;
    cursor:pointer;
    font-weight:500;
}

.menupage .menubody .menucategoriesbox .menusubtabs .active{
    border-bottom:3px solid #e53935;
    color:#e53935;
}

.form-row{
    margin-bottom:18px;
}

.form-row label{
    display:block;
    font-size:13px;
    font-weight:600;
    color:#444;
    margin-bottom:6px;
}

.form-row input{
    width:100%;
    height:38px;
    padding:8px 10px;
    border:1px solid #dcdcdc;
    border-radius:4px;
    font-size:14px;
}

.form-row input:focus{
    border-color:#d43c3c;
    outline:none;
}

.form-row small{
    display:block;
    margin-top:6px;
    font-size:12px;
    color:#777;
    line-height:1.5;
}

.menuitemstable span.badge {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    border-radius: 2px;
}

.menuitemstable span.badge.inactive {
    background: #dc3545;
}

.menuitemstable span.badge.active {
    background: #198754;
}

.areabox{
    display:flex;
    flex-direction:column;
    gap:16px;
}


.areaboxfield{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.areaboxfield.full{
    flex:1;
}

.areaboxfield label{
    font-size:13px;
    font-weight:500;
    color:#333;
}

.areaboxfield input,
.areaboxfield select{
    padding:10px;
    border:1px solid #ddd;
    border-radius:4px;
    font-size:14px;
}

.areaboxtablessection{
    margin-top:10px;
}

.areaboxcheckall{
    margin:8px 0;
}

.areaboxtableslist{
    display:flex;
    flex-wrap:wrap;
    gap:12px 24px;
}

.areaboxtableslist label{
    width: 22%;
    font-size:14px;
    display: flex;
    align-items: center;
    gap: 3%;
}

.areaboxtableslist label input, .areaboxtableslist label textarea {
    margin: 0 0 0 20px;
}

.areaboxstatusrow{
    margin-top:10px;
}


/* Menu & Discount section style end */


/* pagemessage section style start */

.successmessage {
    display: inline-flex;
    padding: 0px 10px;
    background: #309100;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
}

.successmessage p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.pagemessage {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    z-index: 11;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    border-radius: 20px;
}

.pagemessage .warningmessage {
    background: #ff0000;
    color: #fff;
    padding: 7px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-transform: capitalize;
}

/* pagemessage section style end */

/* =========================================================
   ORDER & BILLING DASHBOARD
========================================================= */

.billing-page {
    padding: 24px;
    background: #f4f6f8;
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: #1f2937;
}


/* =========================================================
   HEADER
========================================================= */

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.page-title h1,
.page-title h2 {
    margin: 0;
    font-size: 27px;
    font-weight: 750;
    color: #17202b;
    letter-spacing: -.4px;
}

.page-subtitle {
    color: #7b8490;
    margin-top: 6px;
    font-size: 13px;
}


/* =========================================================
   SUMMARY CARDS
========================================================= */

.summary-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.summary-card {
    background: #fff;
    border: 1px solid #e9edf1;
    border-radius: 15px;
    padding: 17px;
    box-shadow: 0 3px 14px rgba(25, 35, 45, .045);
    transition: all .2s ease;
    position: relative;
    overflow: hidden;
}

.summary-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #377729;
    opacity: .8;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(25, 35, 45, .08);
}

.summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.summary-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ec;
    color: #377729;
    font-size: 17px;
}

.summary-label {
    color: #7b8490;
    font-size: 12px;
    font-weight: 600;
}

.summary-value {
    font-size: 23px;
    font-weight: 750;
    color: #17202b;
    line-height: 1.2;
}

.summary-card small,
.summary-small {
    display: block;
    margin-top: 5px;
    color: #9aa2ad;
    font-size: 10px;
}


/* =========================================================
   FILTER
========================================================= */

.filter-box {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 15px;
    padding: 17px;
    margin-bottom: 22px;
    box-shadow: 0 3px 14px rgba(25, 35, 45, .035);
}

.filter-grid {
    display: grid;
    grid-template-columns:
        1fr
        1fr
        1fr
        1fr
        2fr
        auto;
    gap: 12px;
    align-items: end;
}

.filter-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #697482;
}

.form-control,
.form-select {
    width: 100%;
    height: 42px;
    border: 1px solid #dfe4e9;
    border-radius: 9px;
    padding: 0 12px;
    background: #fff;
    color: #303945;
    font-size: 13px;
    outline: none;
    transition: .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #377729;
    box-shadow: 0 0 0 3px rgba(55,119,41,.08);
}

.filter-btn {
    height: 42px;
    border: 0;
    border-radius: 9px;
    padding: 0 20px;
    background: #377729;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.filter-btn:hover {
    background: #2e641f;
    transform: translateY(-1px);
}


/* =========================================================
   MAIN DASHBOARD
========================================================= */

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

.panel,
.orders-panel,
.billing-section {
    background: #fff;
    border: 1px solid #e7ebef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(25, 35, 45, .04);
}

.panel-header,
.billing-section-header {
    padding: 17px 19px;
    border-bottom: 1px solid #edf0f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.panel-title {
    margin: 0;
    font-size: 15px;
    font-weight: 750;
    color: #202936;
}

.panel-header span,
.billing-section-header span {
    font-size: 11px;
    color: #8a94a0;
}

.panel-body {
    padding: 15px 18px;
}


/* =========================================================
   PENDING TABLES
========================================================= */

.pending-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 4px;
    border-bottom: 1px solid #f0f2f4;
    transition: .15s;
}

.pending-item:hover {
    background: #fafcf9;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 8px;
}

.pending-item:last-child {
    border-bottom: 0;
}

.table-name {
    font-weight: 750;
    font-size: 14px;
    color: #27313d;
}

.order-number {
    font-size: 11px;
    color: #8a94a0;
    margin-top: 4px;
}

.pending-amount {
    font-size: 14px;
    font-weight: 750;
    color: #222b35;
    text-align: right;
}


/* =========================================================
   BADGES
========================================================= */

.badge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .2px;
}

.badge-pending {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #ffe0e5;
}

.badge-paid {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #d2f7e3;
}

.badge-gst {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
}

.badge-without {
    background: #fffbea;
    color: #a16207;
    border: 1px solid #fcefc1;
}


/* =========================================================
   PAYMENT MODE
========================================================= */

.payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f4;
}

.payment-row:last-child {
    border-bottom: 0;
}

.payment-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.payment-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: #f2f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #377729;
}

.payment-amount {
    font-weight: 750;
    font-size: 13px;
}


/* =========================================================
   BILLING SUMMARY
========================================================= */

.billing-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f4;
    font-size: 13px;
}

.billing-summary-row:last-child {
    border-bottom: 0;
}

.billing-summary-row strong {
    font-weight: 750;
}

.billing-total {
    margin-top: 8px;
    padding-top: 15px !important;
    border-top: 2px solid #e8ecef;
    font-size: 16px !important;
}


/* =========================================================
   ORDERS TABLE
========================================================= */

.orders-panel {
    margin-bottom: 22px;
}

.orders-table-wrap {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.orders-table th {
    background: #f8fafb;
    padding: 13px 14px;
    font-size: 10px;
    color: #697482;
    text-align: left;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-weight: 750;
}

.orders-table td {
    padding: 14px;
    border-top: 1px solid #f0f2f4;
    font-size: 12px;
    color: #3c4652;
    vertical-align: middle;
    white-space: nowrap;
}

.orders-table tbody tr {
    transition: .15s;
}

.orders-table tbody tr:hover {
    background: #fafcfb;
}

.order-no {
    font-weight: 750;
    color: #377729;
}

.amount {
    font-weight: 750;
    color: #202936;
}

.view-btn {
    border: 1px solid #dce2e7;
    background: #fff;
    color: #374151;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 650;
    cursor: pointer;
    transition: .2s;
}

.view-btn:hover {
    background: #377729;
    color: #fff;
    border-color: #377729;
}


/* =========================================================
   STAFF
========================================================= */

.staff-table {
    width: 100%;
    border-collapse: collapse;
}

.staff-table th,
.staff-table td {
    padding: 11px;
    border-bottom: 1px solid #f1f3f5;
    font-size: 12px;
}

.staff-table th {
    color: #687482;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .3px;
}


/* =========================================================
   MODAL
========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.58);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.order-modal {
    width: 720px;
    max-width: 100%;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 25px 70px rgba(0,0,0,.22);
    animation: modalOpen .2s ease;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-head {
    padding: 18px 21px;
    border-bottom: 1px solid #e7ebef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 750;
}

.modal-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 9px;
    background: #f3f5f7;
    color: #5f6975;
    font-size: 18px;
    cursor: pointer;
    transition: .2s;
}

.modal-close:hover {
    background: #feecec;
    color: #dc2626;
}

.modal-body {
    padding: 20px;
}


/* =========================================================
   ORDER INFO
========================================================= */

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.info-box {
    background: #f8fafb;
    border: 1px solid #edf0f2;
    border-radius: 10px;
    padding: 12px;
}

.info-label {
    font-size: 10px;
    color: #7c8793;
    text-transform: uppercase;
    font-weight: 650;
}

.info-value {
    font-size: 14px;
    font-weight: 750;
    margin-top: 5px;
    color: #202936;
}


/* =========================================================
   ITEM TABLE
========================================================= */

.item-table {
    width: 100%;
    border-collapse: collapse;
}

.item-table th,
.item-table td {
    padding: 11px;
    border-bottom: 1px solid #edf0f2;
}

.item-table th {
    background: #f8fafb;
    text-align: left;
    font-size: 10px;
    color: #697482;
    text-transform: uppercase;
}

.item-table td {
    font-size: 12px;
}


/* =========================================================
   TOTALS
========================================================= */

.totals {
    margin-top: 18px;
    margin-left: auto;
    width: 290px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 13px;
}

.total-grand {
    font-size: 18px;
    font-weight: 750;
    border-top: 1px solid #dfe4e8;
    margin-top: 7px;
    padding-top: 12px;
    color: #377729;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-state {
    text-align: center;
    padding: 35px 20px;
    color: #929ba6;
}

.empty-state i {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    color: #cbd1d7;
}

.empty-state p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.orders-table-wrap::-webkit-scrollbar,
.order-modal::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.orders-table-wrap::-webkit-scrollbar-thumb,
.order-modal::-webkit-scrollbar-thumb {
    background: #cbd2d9;
    border-radius: 10px;
}

.orders-table-wrap::-webkit-scrollbar-track,
.order-modal::-webkit-scrollbar-track {
    background: #f5f6f7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media(max-width:900px) {

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:600px) {

    .billing-page {
        padding: 12px;
    }

    .page-header {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .orders-panel {
        overflow-x: auto;
    }

    .orders-table {
        min-width: 950px;
    }

    .order-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .totals {
        width: 100%;
    }
}

.summary-card:nth-child(1) .summary-icon {
    background: #eef6ec;
    color: #377729;
}

.summary-card:nth-child(2) .summary-icon {
    background: #ecfdf5;
    color: #059669;
}

.summary-card:nth-child(3) .summary-icon {
    background: #fff1f2;
    color: #e11d48;
}

.summary-card:nth-child(4) .summary-icon {
    background: #eff6ff;
    color: #2563eb;
}

.summary-card:nth-child(5) .summary-icon {
    background: #fff7ed;
    color: #ea580c;
}

.summary-card:nth-child(6) .summary-icon {
    background: #f5f3ff;
    color: #7c3aed;
}

.orders-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.pagination-info {
    font-size: 13px;
    color: #777;
}

.pagination-info strong {
    color: #222;
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-btn {
    min-width: 34px;
    height: 34px;

    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e1e1e1;
    border-radius: 7px;

    background: #fff;
    color: #444;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: .2s;
}

a.page-btn:hover {
    background: #f4f7f4;
    border-color: #377729;
    color: #377729;
}

.page-btn.active {
    background: #377729;
    border-color: #377729;
    color: #fff;
}

.page-btn.disabled {
    opacity: .4;
    cursor: not-allowed;
}

.page-dots {
    padding: 0 4px;
    color: #999;
    font-size: 13px;
}


#orderModal.show {
    display: flex;
}

.order-summary {
    width: 100%;
}

.order-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.order-summary-number {
    font-size: 20px;
    font-weight: 700;
}

.order-summary-date {
    margin-top: 5px;
    color: #888;
    font-size: 12px;
}

.order-payment-paid,
.order-payment-pending {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.order-payment-paid {
    background: #e9f9ef;
    color: #168a45;
}

.order-payment-pending {
    background: #fff4df;
    color: #d98200;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 10px 0;
}

.order-info-card {
    background: #f8f9fb;
    border: 1px solid #edf0f3;
    border-radius: 10px;
    padding: 13px;
}

.order-info-card span {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 6px;
}

.order-info-card strong {
    font-size: 14px;
}

.order-items-box {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.order-section-title {
    padding: 13px 15px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
}

.order-items-table th,
.order-items-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 13px;
}

.order-items-table th {
    background: #f8f9fb;
    font-size: 11px;
    text-transform: uppercase;
}

.order-total-box {
    margin-top: 15px;
    margin-left: auto;
    width: 40%;
}

.order-total-box > div {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 13px;
}

.order-total-box .grand-total {
    border-top: 1px solid #ddd;
    margin-top: 5px;
    padding-top: 12px;
    font-size: 18px;
}

.payment-done-box {
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fb;
    border: 1px solid #e8ebef;
    border-radius: 12px;
}

.payment-done-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.payment-done-row {
    display: flex;
    gap: 10px;
}

.payment-select {
    flex: 1;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
}

.payment-done-btn {
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    background: #198754;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.payment-done-btn:hover {
    opacity: .9;
}

@media (max-width: 768px) {

    .order-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-done-row {
        flex-direction: column;
    }

    .payment-done-btn {
        height: 42px;
    }

    .order-total-box {
        width: 100%;
    }

}

#orderModal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.25s ease;

    z-index: 99999;
}

#orderModal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   MODAL BOX
========================================================= */

#orderModal .order-modal {
    width: min(920px, calc(100% - 30px));
    max-height: calc(100vh - 40px);

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.25),
        0 8px 25px rgba(15, 23, 42, 0.10);

    overflow: hidden;

    transform: translateY(20px) scale(0.98);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;

    display: flex;
    flex-direction: column;
}

#orderModal.show .order-modal {
    transform: translateY(0) scale(1);
}


/* =========================================================
   MODAL HEADER
========================================================= */

#orderModal .modal-head {
    display: none;
}


/* =========================================================
   MODAL BODY
========================================================= */

#orderModal .modal-body {
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.order-summary {
    padding: 24px;
    background: #fff;
}


/* =========================================================
   ORDER HEADER
========================================================= */

.order-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
    margin-right: 30px;
}

.order-summary-number {
    font-size: 23px;
    font-weight: 700;

    color: #111827;

    line-height: 1.25;
}

.order-summary-date {
    margin-top: 6px;

    font-size: 13px;

    color: #64748b;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.order-summary::before {
    content: "×";

    position: absolute;

    top: 12px;
    right: 16px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 26px;
    line-height: 1;

    color: #64748b;

    cursor: pointer;

    transition: 0.2s ease;
}


/* =========================================================
   PAYMENT STATUS
========================================================= */

.order-payment-paid,
.order-payment-pending {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 8px 13px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.2px;
}

.order-payment-paid {
    background: #eaf8ef;
    color: #15803d;
}

.order-payment-pending {
    background: #fff7e6;
    color: #d97706;
}


/* =========================================================
   INFO CARDS
========================================================= */

.order-info-grid {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    width: 100%;
}

.order-info-card {
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.2s ease;
    width: 23%;
}

.order-info-card:hover {
    border-color: #dbe3ee;

    background: #f9fbfd;
}

.order-info-card span {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 7px;

    font-size: 11px;

    color: #64748b;
}

.order-info-card span i {
    font-size: 11px;
}

.order-info-card strong {
    font-size: 15px;

    color: #111827;

    font-weight: 700;
}


/* =========================================================
   ORDER ITEMS BOX
========================================================= */

.order-items-box {
    margin-top: 18px;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    overflow: hidden;

    background: #fff;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.order-section-title {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 14px 16px;

    font-size: 16px;
    font-weight: 700;

    color: #111827;

    border-bottom: 1px solid #e5e7eb;
}

.order-section-title i {
    font-size: 16px;
}


/* =========================================================
   ITEMS TABLE
========================================================= */

.order-items-table {
    width: 100%;

    border-collapse: collapse;

    font-size: 13px;
}

.order-items-table thead {
    background: #f8fafc;
}

.order-items-table th {
    padding: 11px 14px;

    font-size: 11px;

    font-weight: 700;

    color: #475569;

    text-transform: uppercase;

    border-bottom: 1px solid #e5e7eb;

    text-align: left;

    white-space: nowrap;
}

.order-items-table td {
    padding: 13px 14px;

    color: #334155;

    border-bottom: 1px solid #edf0f3;

    vertical-align: middle;
}

.order-items-table tbody tr:last-child td {
    border-bottom: 0;
}

.order-items-table tbody tr:hover {
    background: #fafafa;
}

.order-items-table td:nth-child(1) {
    width: 45px;

    color: #64748b;
}

.order-items-table td:nth-child(3) {
    font-weight: 600;
}

.order-items-table td:nth-child(4),
.order-items-table th:nth-child(4) {
    text-align: right;
}

.order-items-table td:nth-child(5),
.order-items-table th:nth-child(5) {
    text-align: right;
}

.order-items-table td:nth-child(5) {
    font-weight: 700;
    color: #111827;
}


/* =========================================================
   TOTAL BOX
========================================================= */

.order-total-box {
    max-width: 100%;
    margin-left: auto;
    padding-top: 16px;
}

.order-total-box > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 7px 0;

    font-size: 13px;

    color: #475569;
}

.order-total-box > div strong {
    color: #111827;

    font-weight: 700;
}

.order-total-box > div:nth-child(2) strong {
    color: #15803d;
}


/* =========================================================
   GRAND TOTAL
========================================================= */

.order-total-box .grand-total {
    margin-top: 7px;

    padding: 13px 14px;

    border-top: 1px solid #dbe1e8;

    border-radius: 8px;

    background: #f3fbf6;
}

.order-total-box .grand-total span {
    font-size: 17px;

    font-weight: 700;

    color: #111827;
}

.order-total-box .grand-total strong {
    font-size: 19px;

    font-weight: 800;

    color: #111827;
}


/* =========================================================
   PAYMENT DONE BOX
========================================================= */

.payment-done-box {
    margin-top: 18px;
    padding: 15px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    border-radius: 11px;
    width: 55%;
}

.payment-done-title {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 11px;

    font-size: 14px;

    font-weight: 700;

    color: #92400e;
}

.payment-done-row {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.payment-select {
    flex: 1;
    height: 42px;
    padding: 15px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    font-size: 13px;
    outline: none;
}

.payment-select:focus {
    border-color: #22c55e;

    box-shadow:
        0 0 0 3px rgba(34, 197, 94, 0.10);
}

.payment-done-btn {
    height: 42px;

    padding: 0 18px;

    border: 0;

    border-radius: 8px;

    background: #16a34a;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    transition: 0.2s ease;
}

.payment-done-btn:hover {
    background: #15803d;

    transform: translateY(-1px);
}


/* =========================================================
   SCROLLBAR
========================================================= */

#orderModal .modal-body::-webkit-scrollbar {
    width: 7px;
}

#orderModal .modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

#orderModal .modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;

    border-radius: 10px;
}

#orderModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}


/* =========================================================
   ALERT
========================================================= */

#orderModal .alert {
    margin: 20px;

    border-radius: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    #orderModal {
        align-items: flex-end;
    }

    #orderModal .order-modal {
        width: 100%;

        max-height: 92vh;

        border-radius: 18px 18px 0 0;
    }

    .order-summary {
        padding: 18px;
    }

    .order-summary-number {
        font-size: 18px;
    }

    .order-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-total-box {
        width: 100%;
    }

    .payment-done-row {
        flex-direction: column;
    }

    .payment-done-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-head {
        gap: 10px;
    }

    .order-payment-paid,
    .order-payment-pending {
        font-size: 10px;
        padding: 6px 9px;
    }

    .order-items-table th,
    .order-items-table td {
        padding: 10px 8px;
    }

    .order-summary-number {
        font-size: 16px;
    }

}