@import url("./common.css");
@import url("./login.css");
@import url("./header.css");
@import url("./restaurants.css");
@import url("./orders.css");
@import url("./responsive.css");
@import url("./style.css");
@import url("./modal.css");
@import url("./TableList.css");
@import url(./searchbox.css);
@import url(./kds.css);
@import url("./kds.css");
@import url("./chatbot.css");
@import url("./button.css");
@import url("./root.css");
@import url("./kitchenTokenDisplay.css");
@import url("./eodReport.css");
@import url("./desktopNavbar.css");

@font-face {
  font-family: "Poppins-Bold";
  src: url("./font/Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-ExtraBold";
  src: url("./font/Poppins-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-ExtraLight";
  src: url("./font/Poppins-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Light";
  src: url("./font/Poppins-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("./font/Poppins-Medium.ttf") format("truetype");
}


* {
  padding: 0px;
  margin: 0px;
  font-family: "Poppins-Medium";
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0px !important;
  margin: 0px !important;
}

table {
  table-layout: fixed;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: var(--gray_color_lite);
}

::-webkit-scrollbar-track {
  background: transparent;
  margin-block: 2px;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb {
  background: var(--main_color);
  border-radius: 12px;
}


/* React Toastify Customizations */
/* .Toastify__toast {
  background-color: var(--sky_color) !important;
  color: white !important;
}

.Toastify__toast.Toastify__toast--success {
  background-color: var(--green_color) !important;
}

.Toastify__toast.Toastify__toast--error {
  background-color: var(--danger_color) !important;
}

.Toastify__toast.Toastify__toast--warning {
  background-color: var(--amber) !important;
}

.Toastify__progress-bar {
  display: none !important;
}

.Toastify__toast-icon {
  background-color: white !important;
  border-radius: 50%;
  padding: 2px;
} */

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--black_color);
  opacity: 0.7;
  z-index: 1040;
}

.display_table tr th,
.display_table tr td {
  vertical-align: middle;
}

.display_table tr td .action_row {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.display_table tr td h1,
.display_table tr td h2,
.display_table tr td h3,
.display_table tr td h4,
.display_table tr td h5,
.display_table tr td h6,
.display_table tr td p {
  padding: 0px !important;
  margin: 0px !important;
}

.display_table tr th h1,
.display_table tr th h2,
.display_table tr th h3,
.display_table tr th h4,
.display_table tr th h5,
.display_table tr th h6,
.display_table tr th p {
  padding: 0px !important;
  margin: 0px !important;
}

.image_upload {
  display: flex;
  margin: 7px;
  align-items: center;
  gap: 2;
}

.image_upload .upload_box {
  width: 100px;
  height: 100px;
  border: 2px dashed #ccc;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.image_upload .upload_box .icon_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 20px;
  filter: contrast(0%);
}

.image_upload .image_list {
  display: flex;
  align-items: center;
  gap: 2;
}

.image_upload .image_list .image_box {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 50px;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 5px;
}

.image_upload .image_list .image_box .single_image {
  width: 100px;
  height: 100px;
  object-fit: fill;
}

.image_upload .image_list .image_box .remove_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px !important;
  height: 20px !important;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.image_upload .image_list .image_box:hover .remove_btn {
  opacity: 1;
}

.Registerdelivery_mainwraper .left_mainwraper .flex_mbox .mobile_showsidebar {
  display: none;
  text-align: center;
}

.MuiSwitch-root {
  width: 36px !important;
  height: 20px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  text-align: center !important;
  align-content: center !important;
  margin-bottom: 12px;
  margin-left: 10px;
}

.MuiSwitch-switchBase {
  padding: 2px !important;
  color: var(--white_color) !important;
}

.MuiSwitch-thumb {
  background-color: var(--danger_color) !important;
  width: 16px !important;
  height: 16px !important;
  box-shadow: none !important;
}

.MuiSwitch-track {
  background-color: var(--danger_color_lite) !important;
  border-radius: 20px !important;
  opacity: 1 !important;
}

.MuiSwitch-switchBase.Mui-checked {
  transform: translateX(16px) !important;
}

.MuiSwitch-switchBase.Mui-checked .MuiSwitch-thumb {
  background-color: var(--green_color) !important;
}

.MuiSwitch-switchBase.Mui-checked+.MuiSwitch-track {
  background-color: var(--green_color_lite) !important;
}

.restaurant_check_button {
  font-size: 14px;
  height: 30px;
  border: 1px solid var(--white_color);
  color: var(--white_color);
  background: var(--main_color);
  padding: 4px 14px;
  border-radius: 5px;
  font-weight: 600;
}

.bg_green {
  background: green;
}

.border_green {
  border: 2px solid green !important
}

.menu_category_img {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  object-fit: fill;
}

.display_table {
  /* margin: 0px 15px; */
}

.display_table tr th,
.display_table tr td {
  vertical-align: middle;
}

.display_table tr td .action_row {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.display_table tr td h1,
.display_table tr td h2,
.display_table tr td h3,
.display_table tr td h4,
.display_table tr td h5,
.display_table tr td h6,
.display_table tr td p {
  padding: 0px !important;
  margin: 0px !important;
}

.display_table tr th h1,
.display_table tr th h2,
.display_table tr th h3,
.display_table tr th h4,
.display_table tr th h5,
.display_table tr th h6,
.display_table tr th p {
  padding: 0px !important;
  margin: 0px !important;
}

.product_image_wraper {
  height: 90px;
  overflow: hidden;
}

.product_name_wraper {
  display: flex;
  font-size: clamp(10px, 2.5vw, 18px);
  color: var(--black_color);
  justify-content: center;
  align-items: center;
  align-self: center;
  height: 110px;
  overflow: hidden;
  background: var(--main_color_lite);
  cursor: pointer;
  border-radius: 10px 10px 0px 0px;
  border: 2px solid var(--main_color_lite);
  position: relative;
  padding: 10px;
}

.product_name_wraper .product_name {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(10px, 2.5vw, 18px);
  color: var(--black_color);
  text-align: center;
  margin: 0;
  font-weight: 500;
  user-select: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

.product_image_wraper .product_image {
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.text_box {
  position: relative;
  background: var(--white_color);
  cursor: pointer;
  min-height: 40px;
  font-size: 12px;
  font-weight: bold;
}

.text_box .title-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.text_box_name_veiw {
  position: relative;
  background: var(--white_color);
  cursor: pointer;
  margin-top: 5px;
  min-height: 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0px 0px 10px 10px;
}

.text_box_name_veiw .title-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
   word-break: break-word;
  overflow-wrap: break-word;
}

.text_box_name_veiw .title-section h6 {
  font-size: 14px;
}

.click-indicator {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--main_color);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid var(--white_color);
  transition: opacity 0.3s ease;
  z-index: 99;
}

.cart-quantity-badge {
  position: absolute;
  top: 120px;
  /* right: 7px; */
  background-color: var(--white_color);
  color: var(--black_color);
  border-radius: 50%;
  /* padding: 4px; */
  font-size: 10px;
  font-weight: bold;
}

.order_type_btn_wrapper {
  display: flex;
  gap: 0px;
  padding: 0 0px 15px
}

.order_type_btn_wrapper .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46%;
  height: 40px;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray_color);
  background: var(--white_color);
  border: none;
  border-bottom: 1px solid var(--black_color_lite);
  /* border-right: 1px solid var(--black_color_lite); */
  transition: all 0.2s ease;
  border-radius: 10px 10px 0px 0px;
}

.order_type_btn_wrapper .btn_wrapper.active {
  color: var(--white_color);
  background: var(--main_color);
  border: 1px solid var(--main_color);
}

.empty_cart_icon {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50px;
  margin: auto;
}

/* Customization Badges for Product Cards */
.product_image_wraper {
  position: relative;
}

.customizable-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 123, 255, 0.9);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
}

.required-customization-badge {
  position: absolute;
  top: 8px;
  right: 36px;
  /* Position next to customizable badge */
  background: rgba(255, 193, 7, 0.9);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
}

/* If only required badge is needed, center it */
.required-customization-badge:only-child {
  right: 8px;
}

.text_box small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
}

.text_box small.text-info {
  color: var(--sky_color) !important;
}

.text_box small.text-warning {
  color: var(--warning_color) !important;
  font-weight: 500;
}

/* Hover effects for customizable items */
.main_contentwraper:hover .customizable-badge,
.main_contentwraper:hover .required-customization-badge {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Price styling for variable pricing */
.text_box h5 {
  margin-bottom: 4px;
}

/* Make product images more interactive */
.product_image {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product_image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Customization modal specific styles */
.customization-display small {
  font-size: 11px;
  color: var(--gray_color);
  line-height: 1.2;
}

/* Badge animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.required-customization-badge {
  animation: pulse 2s infinite;
}

.float-right {
  float: right;
}

/* Delivery Status Modal Styles */
.delivery_status_modal {
  padding: 20px;
}

.current-status {
  margin-bottom: 30px;
  font-size: 18px;
  color: var(--gray_color);
}

.current-status b {
  color: var(--green_color);
  text-transform: capitalize;
}

/* Progress Container */
.progress-container {
  position: relative;
  margin-bottom: 20px;
}

/* Progress Line Background */
.progress-line-bg {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  height: 2px;
  background-color: var(--main_color_lite);
  z-index: 1;
  border-radius: 1px;
}

/* Active Progress Line */
.progress-line-active {
  position: absolute;
  top: 25px;
  left: 25px;
  height: 2px;
  background-color: var(--green_color);
  z-index: 2;
  transition: width 0.3s ease;
  border-radius: 1px;
}

/* Progress Steps List */
.progress-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.box_wraper {
  text-align: center;
}

/* Icon Box Styles */
.icon_box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main_color_lite);
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 10px;
}

.icon_box.active {
  background-color: var(--green_color);
  border-color: var(--green_color);
}

.icon_box.completed {
  background-color: var(--green_color);
  border-color: var(--green_color);
}

/* Step Icons */
.step-icon {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

.step-icon.active-icon {
  filter: brightness(0) invert(1);
}

/* Checkmark Icon */
.checkmark {
  width: 20px;
  height: 20px;
}

/* Step Labels */
.step-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: normal;
  color: var(--gray_color);
  text-align: center;
  line-height: 1.2;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-label.active-label {
  font-weight: bold;
  color: var(--green_color);
}

/* Progress Percentage */
.progress-percentage {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: var(--gray_color);
  font-weight: 500;
}

/* Timeline Information */
.timeline-info {
  margin-top: 20px;
}

.timeline-info h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--gray_color);
}

.timeline-info .table {
  font-size: 14px;
}

.timeline-info .table th {
  background-color: var(--white_color);
  font-weight: 600;
  color: var(--gray_color);
  border-color: var(--white_color);
}

.timeline-info .table td {
  vertical-align: middle;
  border-color: var(--white_color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .progress-steps {
    flex-direction: column;
    gap: 20px;
  }

  .progress-step {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .progress-line-bg,
  .progress-line-active {
    display: none;
  }

  .box_wraper {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .step-label {
    margin-top: 0;
    min-height: auto;
    font-size: 14px;
  }

  .product_name_wraper {
    height: 90px;
  }

  .product_name_wraper .product_name {
    font-size: 14px;
  }

  .text_box_name_veiw .title-section {
    flex-direction: column;
  }

  .text_box_name_veiw .title-section h6 {
    font-size: 12px;
  }

  .search_box {
    margin: 0px 0px 0px 0px !important;
  }
}

/* Animation for progress line */
@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: var(--progress-width);
  }
}

/* Pulse animation for active step */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

.icon_box.active:not(.completed) {
  animation: pulse 2s infinite;
}

/* Hover effects */
.icon_box:hover {
  transform: scale(1.1);
}

.step-label:hover {
  color: var(--green_color);
}

/* Color variations for different order types */
.delivery_status_modal[data-order-type="dine-in"] .progress-line-active,
.delivery_status_modal[data-order-type="dine-in"] .icon_box.active {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

.delivery_status_modal[data-order-type="takeaway"] .progress-line-active,
.delivery_status_modal[data-order-type="takeaway"] .icon_box.active {
  background-color: var(--warning_color);
  border-color: var(--warning_color);
}

.delivery_status_modal[data-order-type="takeaway"] .icon_box.active .step-icon.active-icon {
  filter: brightness(0);
}

/* Success state for completed orders */
.delivery_status_modal[data-status="completed"] .progress-line-active,
.delivery_status_modal[data-status="completed"] .icon_box.active {
  background-color: var(--green_color);
  border-color: var(--green_color);
}

/* Error state for cancelled orders */
.delivery_status_modal[data-status="cancelled"] .progress-line-active,
.delivery_status_modal[data-status="cancelled"] .icon_box.active {
  background-color: var(--danger_color);
  border-color: var(--danger_color);
}

/* Loading state */
.progress-line-active.loading {
  background: linear-gradient(90deg, #28a745, #20c997, #28a745);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.clear_btn {
  border: 0px solid red;
}

.login_wraper .dropdown-toggle {
  display: flex;
  align-items: center;
}

/* .header_profile {
  align-items: start

} */
.header_profile .dropdown-toggle::after {
  position: absolute;
  right: 0;
  top: 17px;
  align-items: start
}

.load_more_btn_container {
  display: flex;
  width: 100%;
  /* align-items: center; */
  justify-content: center;
  margin-bottom: 5px;
}

.load_more_btn {
  color: var(--white_color);
  background: var(--main_color);
  padding: 8px;
  border: 1px solid var(--main_color);
  border-radius: 5px !important;
}


.manage-product-modal-wrapper .DashboardHeader,
.manage-product-modal-wrapper .DashboardResponsiveHeader {
  display: none;
}

.manage-product-modal-wrapper .Registerdelivery_mainwraper {
  margin: 0;
  padding: 10px;
  height: 100%;
  overflow: auto;
}

.modal-xl .modal-dialog {
  max-width: 95%;
  margin: 1rem auto;
}





.payment_method .payment_fixedwraper .order-card {
  background: var(--main_color_lite);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* max-width: 450px; */
  margin: auto;
}

.payment_method .payment_fixedwraper .order-id {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.payment_method .payment_fixedwraper .order-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.payment_method .payment_fixedwraper .order-type {
  background: var(--primary_color);
  color: white;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 5px;
}

.payment_method .payment_fixedwraper h4 {
  font-size: 15px;
  margin: 15px 0 8px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.payment_method .payment_fixedwraper .info-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.payment_method .payment_fixedwraper .status {
  background: var(--warning_color);
  color: black;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 5px;
  display: inline-block;
}


.clear_search_btn {
  color: var(--danger_color);
  cursor: pointer;
}

.generating_invoice_text {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.password_input_wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password_input_wrapper input {
  width: 100%;
  padding-right: 40px;
  /* space for icon */
}

.toggle_password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
}

.add_guest_save_btn {
  margin: -10px !important;
  color: var(--white_color);
  font-family: var(--medium_font);
  background: var(--main_color);
  height: 100% !important;
  width: 100% !important;
  border: none;
  font-size: 14px;
}

.user_select_none {
  pointer-events: none;
  user-select: none;
}

.button_disabled {
  opacity: 50% !important;
}

.search_box {
  border: 1px solid var(--black_color_lite);
  border-radius: 5px;
  width: 250px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--main_color);
  border-radius: 50px;
  padding: 0px 15px;
  margin: 0px 16px 0px 0px;
}

.search_box input {
  border: none;
  outline: none;
  height: 95%;
  width: 85%;
  font-size: 12px;
  font-family: var(--medium_font);
  background: transparent !important;
}

.search_box input::placeholder {
  color: var(--gray_color_lite);
}

/* .single_order_wrapper {
  overflow-y: auto;
  max-height: 90vh;
} */

.nav_filter {
  width: 30rem;
}

.empty_cart {
  display: flex;
  color: var(--danger_color);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* width: 100vw; */
  height: 80vh;
}

.coupon_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--main_color);
  color: white;
  border: 1px solid var(--main_color);
  padding: 8px 16px !important;
  border-radius: 50px !important;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}

.coupon_badge:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.coupon_badge:disabled {
  opacity: 0.5;
  cursor: initial;
}

.coupon_badge.applied {
  background-color: var(--green_color) !important;
  color: white;
  border: 1px solid #28a745 !important;
  justify-content: space-between !important;
}

/* Right sidebar modal */
.modal-dialog.modal-right {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  height: 100vh;
  max-width: 100%;
}

.modal-dialog.modal-right .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
  overflow-y: auto;
}

.modal.fade .modal-dialog.modal-right {
  transform: translate(100%, 0);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog.modal-right {
  transform: translate(0, 0);
  min-width: 50vw;
}

.no_customer_assigned {
  color: var(--danger_color);
  padding: 10px 0px 0px 11px !important;
}

.floor_list_for_responsive_header {
  display: flex;
  gap: 2px;
  flex-direction: row;
  overflow-x: auto;
  scroll-behavior: smooth;
  max-width: 94vw;
  white-space: nowrap;
}

.floor_list_for_responsive_header button {
  background-color: var(--white_color);
  color: var(--main_color);
  border: 1px solid var(--main_color);
  border-radius: 5px;
  padding: 5px;
  white-space: nowrap;
}

.floor_list_for_responsive_header button.active {
  background-color: var(--main_color);
  color: var(--white_color);
  border: 1px solid var(--main_color);
  border-radius: 5px;
}

.floor_list_for_responsive_header button:hover {
  background-color: var(--main_color);
  color: var(--white_color);
  border: 1px solid var(--main_color);
  border-radius: 5px;
}

.show_reservation_tab_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.show_reservation_tab_btn_res_header {
  display: none;
}

.modify_order_search_box {
  display: block;
  float: inline-end;
}


.empty_table_data {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid var(--gray_color_lite);
}

.empty_table_data i {
  margin-top: 30px;
  color: var(--gray_color_lite);
  font-size: 80px !important;
}

.empty_table_data h3 {
  color: var(--danger_color);
  font-size: 20px;
  font-weight: 500;
}

.empty_table_data p {
  color: var(--gray_color);
  font-size: 14px;

}

.add_new_course_button {
  color: var(--white_color);
  background: var(--main_color);
  padding: 5px;
  border: 1px solid var(--main_color);
  border-radius: 5px !important;
}





.css-11cfq65-MuiTablePagination-displayedRows,
.css-s09cke-MuiTablePagination-selectLabel {
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .css-1gak8h1-MuiToolbar-root-MuiTablePagination-toolbar {
    padding-left: 0px !important;
  }

  .css-1gak8h1-MuiToolbar-root-MuiTablePagination-toolbar .MuiTablePagination-actions {
    margin-left: 0px !important;
  }

  .css-11cfq65-MuiTablePagination-displayedRows,
  .css-s09cke-MuiTablePagination-selectLabel {
    margin-bottom: 0px;
  }

  .css-oegngy-MuiInputBase-root-MuiTablePagination-select {
    margin-right: 10px !important;
  }
}
