body{

margin:0;
font-family:Arial,sans-serif;
//background:#f5f5f5;
background:#fff7ef;

min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===========================
   HEADER
=========================== */
/*
.header{

    width:100%;
    min-height:270px;

    background:url("/dinflow/images/header.jpg") center center/cover;

    position:relative;

}
*/

.header {
    width: 100%;
    min-height: 270px;

    background: url("../../settings/dinflow_portal_cover.png")
                center center / cover;

    position: relative;
}

.header-overlay {
    background: rgba(0,0,0,.65);

    width: 100%;
    height: 100%;

    padding: 25px 20px 35px;

    box-sizing: border-box;

    color: #fff;
}

.restaurant-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.restaurant-info{

    display:flex;

    align-items:center;

}

.restaurant-logo{

    width:70px;

    height:70px;

    border-radius:50%;

    border:3px solid #fff;

    object-fit:cover;

    margin-right:15px;

}

.restaurant-info h2{

    font-size:22px;

    font-weight:600;

}

.restaurant-info p{

    opacity:.85;

    font-size:13px;

    margin-top:4px;

}

.table-badge{

    //background:#ff7a00;

    padding:10px 16px;

    border-radius:30px;

    font-weight:600;

    font-size:14px;

}

.table-badge span{

		display : flex;
		flex-direction : column;
		justify-content : center;
		align-items : center;
		//border: 2px solid orange;
		gap: 10px;
		//background:#ff7a00;

    padding:10px 16px;

    border-radius:30px;

    font-weight:600;

    font-size:14px;

}

.table-badge i{

    margin-right:6px;

}

.welcome{

    margin-top:40px;

}

.welcome h1{

    font-size:32px;

    margin-bottom:10px;

}

.welcome p{
color:#00ff00;
    font-size:18px;

    opacity:.9;

}
.welcome h2{
	color:#00ff00;
}

#homeBtn{

background:#fff;
color:#ff6b00;

border:none;

padding:10px 16px;

border-radius:6px;

font-weight:bold;

cursor:pointer;

}

#profileBtn{

background:#ff6b00;
color:#fff;

border:none;

padding:10px 16px;

border-radius:6px;

font-weight:bold;

cursor:pointer;

}

#logoutBtn{
width : 100%;
background:#555;
color:#fff;

border:1px solide #ff6b00;

padding:10px 16px;

border-radius:6px;

font-weight:bold;

cursor:pointer;

}


.container{
flex: 1;
padding:20px;

}

.todayAlign{
	disisplay: flex;
	flex-direction: row;
	justify-content : space-between ;
	align-items: center ;
	border: 2px solid orange ;
}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(150px,1fr));

gap:15px;

margin-bottom:25px;

}

.card{

background:#fff;

padding:20px;

border-radius:10px;

text-align:center;

box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.actions{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-bottom:30px;

}

.actions button{

padding:16px;

border:none;

background:#ff6b00;

color:#fff;

border-radius:8px;

font-size:15px;

cursor:pointer;

}

#recentOrders{

    background:#fff;
    padding:20px;
    border-radius:10px;
    min-height:180px;

    display:flex;
    gap:15px;

    overflow-x:auto;
    overflow-y:hidden;

    white-space:nowrap;

    scrollbar-width:thin;

}


/* Each order card inside */
.order {

    min-width:180px;
    flex-shrink:0;
border-radius : 10px;
padding : 4px;
border: 2px solid #ccc;
}

.order-image img{
width:100%;
height:150px;
object-fit:cover;
border-radius:8px;
}

.order-details{
flex:1;
font-size:14px;
}

.order-details {
height:100px;
	display: flex;
	flex-direction : column ;
	gap: 4px;
}

.view-order-btn{
width:100%;
    background:#ff6b00;
    color:#fff;
    border:none;
    padding:8px 15px;
    border-radius:6px;
    cursor:pointer;
    font-size:14px;
}

.view-order-btn:hover{

    opacity:.9;

}

/*==============================
MODAL
==============================*/

.detailsModal{

display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(4px);

    z-index:9999;

    justify-content:center;

    align-items:center;

    padding:20px;
}

.orderDetails-content {

    background:#fff;

    width:100%;

    max-width:650px;

    max-height:90vh;

    overflow-y:auto;

    border-radius:18px;

    padding:20px;

    position:relative;

}



.close-modal{

    position:absolute;

    right:15px;

    top:10px;

    font-size:28px;

    cursor:pointer;

}

.order-info p{

    margin:8px 0;

}

#modalItems{

    display:flex;
    gap:15px;

    overflow-x:auto;
    overflow-y:hidden;

    padding:10px 0;

    scroll-behavior:smooth;

}

#modalItems::-webkit-scrollbar{

    height:6px;

}

#modalItems::-webkit-scrollbar-thumb{

    background:#ccc;
    border-radius:10px;

}

.item-row{

    min-width:120px;
    max-width:120px;

    background:#fff;

    border:1px solid #eee;
    border-radius:12px;

    padding:12px;

    display:flex;
    flex-direction:column;
    align-items:center;

    flex-shrink:0;

}

.item-image{

    width:100px;
    height:100px;

    object-fit:cover;
    border-radius:10px;

    margin-bottom:10px;

}

.item-details{
    text-align:left;
    width:100%;
}

.instruction-box{

    margin-top:20px;

    background:#fafafa;

    padding:8px;

    border-radius:8px;

}

.total-box{

    margin-top:20px;

    text-align:right;

    font-size:20px;

    font-weight:bold;

}

.modal-buttons{

    display:flex;

    gap:10px;

    margin-top:25px;

}

.confirm-btn{

    flex:1;

    background:#28a745;

    color:#fff;

    border:none;

    padding:14px;

    border-radius:8px;

    cursor:pointer;

    font-size:16px;

}

.cancel-btn{

    flex:1;

    background:#ddd;

    border:none;

    padding:14px;

    border-radius:8px;

    cursor:pointer;

    font-size:16px;

}

/*=========================================
 FOOTER
=========================================*/

footer{

    //background:#121720;
background:rgba(0,0,0,.65);
    text-align:center;

    padding:10px 5px;
}

footer h2{

    font-size:32px;
color: #fff;
    margin-bottom:15px;
}

footer span{

    color:#ff7b00;
}

footer p{

    color:#9e9e9e;

    margin:8px 0;
}

.din{

    color:#ffffff;
}
.fl-bottom{

    color:#ff7b00;
}
.fl{

    color:#ff7b00;
    margin-left:-8px;
}
.ow{

    color:#00ff00;
    margin-left:-8px;
}
footer a{
	color:#fff;
}

/* =========================
 DINFLOW FLOATING INFO BUTTON ========================= */ .dinflow-info-button{ position:fixed; right:20px; bottom:20px; width:48px; height:48px; display:flex; align-items:center; justify-content:center; text-decoration:none; background:#17834c; color:#fff; border-radius:50%; box-shadow: 0 5px 18px rgba(0,0,0,.20); z-index:9999; transition: transform .2s ease, box-shadow .2s ease; } /* Information icon */ .dinflow-info-button span{ width:22px; height:22px; display:flex; align-items:center; justify-content:center; border:2px solid #fff; border-radius:50%; font-size:14px; font-weight:700; font-family:Arial, sans-serif; } /* Hover */ .dinflow-info-button:hover{ transform:translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.25); } /* Mobile */ @media(max-width:600px){ .dinflow-info-button{ width:44px; height:44px; right:15px; bottom:15px; } } 