/* body { font-family: Arial, sans-serif; background:#f5f7fa; color:#222; margin:0; padding:20px; } */
.container, .card { max-width:900px; margin:20px auto; background:#fff; padding:20px; border-radius:8px; box-shadow:0 2px 8px rgba(20,20,30,0.05); }
.card { max-width:420px; }

h2 { color:#0a66a3; margin-top:0; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"], select, textarea {
  width:100%; padding:10px; margin:6px 0 12px 0; border-radius:6px; border:1px solid #d7dbe0; box-sizing:border-box;
}
button, .button {
  display:inline-block; padding:10px 16px; background:#0a66a3; color:#fff; border-radius:6px; text-decoration:none; border:none; cursor:pointer;
}
.button { line-height:1.6; }
.success { color: #116611; background:#e6f6e6; padding:8px; border-radius:6px; }
.error { color:#8a1111; background:#feecec; padding:8px; border-radius:6px; }
.menu-table, .cart-table { width:100%; border-collapse:collapse; margin-top:10px; }
.menu-table th, .menu-table td, .cart-table th, .cart-table td { padding:8px 10px; border-bottom:1px solid #eee; text-align:left; }
.total { font-weight:700; font-size:1.1rem; margin-top:10px; }
.cart-actions { margin-top:12px; display:flex; gap:8px; align-items:center; }








@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");
:root {
  --main-bg-color: #1B3C53;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  height: 100%;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

body {
  height: 100%;
  font-size: 65.2%;
  background: #e9ebee;
  color: #1d2129;
  display: flex;
  perspective: 1600px;
}

.version {
  position: absolute;
  bottom: 1em;
  right: 2em;
  border-radius: 4em;
  background: #ff4b2b;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  padding: 0.8em 2em;
  letter-spacing: 0.1em;
  transition: transform 80ms ease-in;
}

h1 {
  font-weight: 700;
  font-size: 3.5em;
  text-align: center;
}

form input {
  background: #eee;
  border: none;
  padding: 12px 15px;
  margin: 0.8em 0;
  width: 100%;
  font-size: 1.4em;
}
form input:focus {
  outline: 1px solid var(--main-bg-color);
}

span {
  color: #333;
  font-size: 1.4em;
  display: inline-block;
  margin: 15px auto;
  font-weight: 100;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

label {
  float: left;
  font-size: 1.4em;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
label:hover {
  cursor: pointer;
}
label span {
  font-size: inherit;
  line-height: 1em;
}
label span::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  border: 2px solid #aaa;
  vertical-align: bottom;
  transition: all 0.1s ease-in-out;
  margin-right: 0.2em;
  transform: scale(0.99);
}

input[type=checkbox] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
input[type=checkbox]:checked + span::before {
  border-color: #fafafa;
  box-shadow: 0 0 0 2px var(--main-bg-color);
  background: var(--main-bg-color);
  transform: scale(0.8);
}
input[type=checkbox]:focus + span {
  text-decoration: underline;
}
input[type=checkbox]:checked + span {
  text-decoration: none;
}

span.forget {
  float: right;
}

span.clearfix {
  clear: both;
  display: table;
}

span.loginwith {
  display: block;
  width: 100%;
  margin-top: 1em;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
span.loginwith::before {
  content: "";
  display: inline-block;
  width: 42%;
  border-bottom: 1px solid #aaa;
  vertical-align: middle;
  margin-right: 5%;
}
span.loginwith::after {
  content: "";
  display: inline-block;
  width: 45%;
  border-bottom: 1px solid #aaa;
  vertical-align: middle;
  margin-left: 5%;
}

span.copy {
  display: block;
  font-size: 1em;
  margin-top: auto;
}

button {
  display: block;
  margin: 1em auto;
  border-radius: 4em;
  border: 1px solid var(--main-bg-color);
  background: var(--main-bg-color);
  color: #fff;
  font-size: 1.2em;
  font-family: Montserrat, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  padding: 0.8em 2em;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
button svg {
  vertical-align: middle;
}

button:hover {
  cursor: pointer;
}

button:active {
  transform: scale(0.95);
}

button:focus {
  outline: none;
}

a {
  transition: all 0.3s ease;
  cursor: pointer;
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover svg {
  cursor: pointer;
  transition: all 0.3s ease;
  stroke: var(--main-bg-color);
}

#container {
  width: 100%;
  max-width: 80em;
  min-width: 70.5em;
  height: 50em;
  position: relative;
  border-radius: 2em;
  transform-style: preserve-3d;
  margin: auto;
}
#container > div {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
}

.content {
  width: 100%;
  height: 100%;
  padding: 0 4em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content p {
  font-size: 1.4em;
}

.login {
  left: 0;
  border-radius: 2em 0 0 2em;
  transform-style: preserve-3d;
}
.login button {
  border-radius: 0px;
  width: 100%;
}
.login svg {
  margin: 1em;
  stroke: #999;
}
.login .content {
  background: #FAFAFA;
  border-radius: 2em 0 0 2em;
}


.register {
  right: 0;
  border-radius: 0 20px 20px 0;
  transform-style: preserve-3d;
}
.register button {
  border-radius: 0px;
  width: 100%;
  margin-bottom: auto;
}
.register svg {
  margin: 1em;
  stroke: #999;
}
.register .content {
  border-radius: 0 20px 20px 0;
  background: #FAFAFA;
  padding: 0em 4em;
}

.page {
  right: 0;
  color: #fff;
  border-radius: 0 20px 20px 0;
  transform-origin: left center;
  transition: -webkit-animation 1s linear;
  transition: animation 1s linear;
  transition: animation 1s linear, -webkit-animation 1s linear;
}
.page button {
  border-color: #fff;
  background: transparent;
}

.front {
  background: linear-gradient(-45deg, var(--main-bg-color) 0%, #1d2129 100%) no-repeat 0 0/100%;
  z-index: 3;
}

.back {
  background: linear-gradient(135deg, var(--main-bg-color) 0%, #1d2129 100%) no-repeat 0 0/200%;
  z-index: 2;
}
.back .content {
  transform: rotateY(180deg);
}

.active .front {
  -webkit-animation: rot-front 0.6s ease-in-out normal forwards;
          animation: rot-front 0.6s ease-in-out normal forwards;
}

.active .back {
  -webkit-animation: rot-back 0.6s ease-in-out normal forwards;
          animation: rot-back 0.6s ease-in-out normal forwards;
}

.close .front {
  -webkit-animation: close-rot-front 0.6s ease-in-out normal forwards;
          animation: close-rot-front 0.6s ease-in-out normal forwards;
}

.close .back {
  -webkit-animation: close-rot-back 0.6s ease-in-out normal forwards;
          animation: close-rot-back 0.6s ease-in-out normal forwards;
}

.weekly_menu_all {
    font-family: "DM sans", sans-serif;
    text-align: center;
    padding: 0 0px;
}

.menu-item-block { display:flex; gap:12px; padding:10px; border:1px solid #eee; border-radius:8px; margin-bottom:10px; align-items:center; }
.menu-img img { border-radius:40px; }
.menu-details { flex:1; }
.section-title { font-weight:600; margin-bottom:10px; margin-top:10px; }
.date-chip input { cursor:pointer; }
.badge-week { font-size:0.9rem; }
 

@-webkit-keyframes rot-front {
  from {
    transform: translateZ(2px) rotateY(0deg);
  }
  to {
    transform: translateZ(1px) rotateY(-180deg);
  }
}

@keyframes rot-front {
  from {
    transform: translateZ(2px) rotateY(0deg);
  }
  to {
    transform: translateZ(1px) rotateY(-180deg);
  }
}
@-webkit-keyframes rot-back {
  from {
    transform: translateZ(1px) rotateY(0deg);
  }
  to {
    transform: translateZ(2px) rotateY(-180deg);
  }
}
@keyframes rot-back {
  from {
    transform: translateZ(1px) rotateY(0deg);
  }
  to {
    transform: translateZ(2px) rotateY(-180deg);
  }
}
@-webkit-keyframes close-rot-front {
  from {
    transform: translateZ(1px) rotateY(-180deg);
  }
  to {
    transform: translateZ(2px) rotateY(0deg);
  }
}
@keyframes close-rot-front {
  from {
    transform: translateZ(1px) rotateY(-180deg);
  }
  to {
    transform: translateZ(2px) rotateY(0deg);
  }
}
@-webkit-keyframes close-rot-back {
  from {
    transform: translateZ(2px) rotateY(-180deg);
  }
  to {
    transform: translateZ(1px) rotateY(0deg);
  }
}
@keyframes close-rot-back {
  from {
    transform: translateZ(2px) rotateY(-180deg);
  }
  to {
    transform: translateZ(1px) rotateY(0deg);
  }
}
.active .register .content {
  transform-origin: left center;
  -webkit-animation: show-register 0.7s ease-in-out normal forwards;
          animation: show-register 0.7s ease-in-out normal forwards;
}

.active .login .content {
  transform-origin: right center;
  -webkit-animation: hide-login 0.7s ease-in-out normal forwards;
          animation: hide-login 0.7s ease-in-out normal forwards;
}

.close .register .content {
  transform-origin: left center;
  -webkit-animation: hide-register 0.7s ease-in-out normal forwards;
          animation: hide-register 0.7s ease-in-out normal forwards;
}

.close .login .content {
  transform-origin: right center;
  -webkit-animation: show-login 0.7s ease-in-out normal forwards;
          animation: show-login 0.7s ease-in-out normal forwards;
}

@-webkit-keyframes show-register {
  from {
    transform: rotateY(80deg);
  }
  to {
    transform: rotateY(0deg);
  }
}

@keyframes show-register {
  from {
    transform: rotateY(80deg);
  }
  to {
    transform: rotateY(0deg);
  }
}
@-webkit-keyframes hide-login {
  from {
    transform: rotateY(0.01deg);
  }
  to {
    transform: rotateY(-80deg);
  }
}
@keyframes hide-login {
  from {
    transform: rotateY(0.01deg);
  }
  to {
    transform: rotateY(-80deg);
  }
}
@-webkit-keyframes hide-register {
  from {
    transform: rotateY(0.01deg);
  }
  to {
    transform: rotateY(80deg);
  }
}
@keyframes hide-register {
  from {
    transform: rotateY(0.01deg);
  }
  to {
    transform: rotateY(80deg);
  }
}
@-webkit-keyframes show-login {
  from {
    transform: rotateY(-80deg);
  }
  to {
    transform: rotateY(0deg);
  }
}
@keyframes show-login {
  from {
    transform: rotateY(-80deg);
  }
  to {
    transform: rotateY(0deg);
  }
}




.menu-import-section {margin-bottom:40px;width:100%;}
.menu-item-block {background:#f9f9f9; border-radius:8px; margin:12px 0; padding:10px 12px;}
/* .menu-img {float:left; margin-right:10px;}
.menu-details {overflow:hidden;} */

.weekly_menu_all {
    font-family: "DM sans", sans-serif;
    text-align: center;
}

.menu-item-block {
    padding: 0px 7px 0px 0px !important;
    background-color: #ffffff;
    border-radius: 104px 35px 35px 107px;
    box-shadow: 0px 16px 38px -21px #00000036;
    border: 1px solid #f5f5f5;
    max-height: 176px;
    overflow: hidden;
    text-align: left;
    margin: 25px 20px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-in-out;
}

.menu-item-block input[type="checkbox"] {
  display: none;
}

.menu-item-block:has(input[type="checkbox"]:checked) {
  border: 2px solid #1B3C53;
}

.menu-details {
    overflow: auto;
    max-height: 138px;
    overflow-x: hidden;
    text-align: left;
    padding: 0 39px 0 0px;
    margin: 17px 0 0 0;
    display: flex;
    flex-direction: column;
}

.form-select-sm {
    width: 40% !important;
    margin: 6px 0 !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    color: #054181;
}

.menu-img {
    float: left;
    width: 33%;
}

.menu-img img {
    width: 94%;
    height: 174px;
    border-radius: 100px !important;
}

.menu-details div {
    font-size: 14px;
    line-height: 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.menu-details::-webkit-scrollbar {
    width: 4px;
    height: 10px;
}

.menu-details::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 17px;
}

.menu-details::-webkit-scrollbar-thumb {
    background-color: #054181;
    border-radius: 30px;
}

.menu-import-section h3 {
    font-size: 30px;
    margin: 0px 0 22px 0;
    text-transform: uppercase;
    color: #022446;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;;
}

.weekly_menu_all h2 {
    background-color: #022446;
    padding: 90px 0px;
    margin-bottom: 40px;
    color: #fff;
    font-size: 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    position: relative;
    border-radius: 0px 0px 60px 60px;
}

.weekly_menu_all h2::after {
    content: url(../admin-panel/image/vec_head1.png);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.weekly_menu_all button {
    border: 2px solid #022a46;
    background-color: #fff;
    padding: 15px 50px;
    font-size: 18px;
    color: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5,
             -6px -6px 12px #ffffff;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.weekly_menu_all button::before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #043a4a 0%, #031f36 100%);
    transition: .3s ease;
    display: block;
    z-index: -1;
    color: #fff;
}

.weekly_menu_all button:hover::before{
  width: 100%;
}

.weekly_menu_all button:hover{
  color: #fff;
}

/* highlight for active week tab */
#weekTabs .nav-link.week-active {
  background-color: #0d6efd !important; /* Bootstrap primary */
  color: #fff !important;
  font-weight: bold;
  border-radius: 5px;
}

#loaderOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 1);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.spinner-border {
  width: 3rem;
  height: 3rem;
}

.date-chip { cursor: pointer; }
.menu-item-block { padding: 12px; border: 1px solid #eee; border-radius: 12px; margin: 10px; background:#fff; }
.menu-img { float:left; margin-right:12px; }
.menu-details { overflow:hidden; }
.section-title { font-weight:700; margin-top: 20px;font-size: 16px; }
.badge-week { font-size: .8rem; }
.nxt_wk_hdx {
    margin: 35px 0px;
}











