@layer utilities {
  @variants responsive {
    /* Hide scrollbar for Chrome, Safari and Opera */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .no-scrollbar {
      -ms-overflow-style: none; /* IE and Edge */
      scrollbar-width: none; /* Firefox */
    }
  }
}
/* tableStyles.css */
.table-container {
  overflow-x: auto; /* Allow horizontal scrolling on small screens */
  width: 100%;
  background-color: #ffffff; /* White background for table container */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.table {
  width: 100%;
  border-collapse: collapse; /* Merge borders */
  font-family: 'Arial', sans-serif; /* Updated font */
}

.table th,
.table td {
  padding: 20px; /* Larger padding for table cells */
  text-align: left; /* Align text to the left */
  border-bottom: 2px solid #e0e0e0; /* Light bottom border for rows */
  transition: background-color 0.3s; /* Smooth transition for hover effects */
}

.table th {
  background-color: #f7f7f7; /* Light gray for header */
  color: #555; /* Darker text color for contrast */
  font-weight: 600; /* Semi-bold header text */
  font-size: 1.1rem; /* Increased font size for header */
  border-top-left-radius: 12px; /* Rounded corners for the header */
  border-top-right-radius: 12px; /* Rounded corners for the header */
}

.table tr:hover {
  background-color: #fafafa; /* Highlight row on hover */
}

.empty-message {
  text-align: center;
  color: #999; /* Light gray for empty message */
  font-style: italic; /* Italic style for emphasis */
  padding: 20px; /* Padding for empty message */
  font-size: 1rem; /* Font size for better visibility */
}

/* Responsive styles */


.status-pending {
  color: white;
  padding: 5px 20px;
  border-radius: 40px;
  background-color: orange;
  font-weight: bold;
}

.status-success {
  color: white;
  padding: 5px 20px;
  border-radius: 40px;
  background-color: green;
  font-weight: bold;
}


.page-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.dashboard-sale-box {
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.dashboard-sale-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 45px;
  margin-bottom: 10px;
}

.dashboard-order-box {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.icon-wrap {
  background-color: #feecdc;
  padding: 15px;
  border-radius: 50%;
  margin-right: 20px;
}

.dashboard-value-box {
  padding: 15px;
  border: 2px solid;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.dashboard-value-box-icon-wrap {
  background-color: #fff;
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.key-value-pair {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Ensure items wrap */
  margin-bottom: 10px;
  width: 100%; /* Ensure it takes up full width of its container */
}

.key {
  font-weight: bold;
  margin-right: 5px;
  color: #333;
  white-space: nowrap; /* Keep the key text on a single line */
}

.value {
  color: #555;
  overflow-wrap: break-word; /* Break long words */
  word-break: break-word; /* Ensure text breaks correctly */
  flex: 1; /* Allow value to take remaining space */
}


html {
  font-size: 16px;
}
body {
  font-size: 16px;
  background-color: #f9fafb;
  overflow: hidden;
}
svg {
  vertical-align: bottom;
}

.day.page-wrapper {
  color: #000;
  background-color: #fff;
}
.night.page-wrapper {
  color: #660000;
  background-color: #fff;
}

.date-time-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}
.info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.heading {
  font-size: 24px;
  height: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333; /* Optional: Change this to your preferred color */
}
.box-heading {
  font-size: 15px;
  height: 40px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333; /* Optional: Change this to your preferred color */
}

.date-time-box {
  padding: 15px 20px;
  border-radius: 8px;
  background-color: #f9f9f9; /* Optional: Change this to your preferred background color */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 120px;
}

.table_data_body {
  font-size: 18px;
  font-weight: 500px;
  color: #555; /* Optional: Change this to your preferred text color */
}
.table_box_body {
  font-size: 14px;
  font-weight: 500px;
  color: #555; /* Optional: Change this to your preferred text color */
}
.body1 {
  display: flex;
  flex-direction: row; /* Ensure the date and time are stacked vertically */
  align-items: center;
}

.day.page-wrapper a {
}
.night.page-wrapper a {
}

.day .topbar,
.day .leftbar {
  background-color: #660000;
  color: #fff;
}
.night .topbar,
.night .leftbar {
  background-color: #333;
}

.MuiTable-root th {
  font-size: 13px;
  font-weight: 600;
}
.MuiTable-root td {
  font-size: 13px;
}
/*login*/
.login_cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  box-shadow: 0 20px 25px -5px #0000001a, 0 10px 10px -5px #0000000a;
  border-radius: 10px;
  overflow: hidden;
  margin: 35px 10px;
  background: #660000;
}
.login_cover_img {
  display: inline-flex;
  width: 50%;
  position: relative;
  height: 100%;
}
.login_cover_img img {
  object-fit: cover;
}
.login_cover_field {
  display: inline-flex;
  width: 50%;
  flex-direction: column;
  padding: 45px;
  color: #fff;
}
.loginput-box {
  margin-bottom: 15px;
  position: relative;
}
.loginput-box label {
  display: block;
}
.loginput-box input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #fff;
  background-color: transparent;
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.loginput-box input::placeholder {
  color: #fff;
}
.loginput-box button.eye {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: transparent;
  border: none;
  top: 30px;
}
.loginput-box button.eye svg {
  font-size: 20px;
}
.loginput-box button {
}
.main-btn {
  color: #660000;
  border: 1px solid #660000;
}
.main-btn:hover {
  color: #fff;
  background-color: #660000;
  border: 1px solid #fff;
}
/*login*/

/*topbar*/
.topbar {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 100%;
  box-shadow: 0 1px 2px #0000000d;
  z-index: 30;
  position: relative;
  padding: 3px 0;
  background-color: #660000;
}
.topbar-design {
  display: flex;
  justify-content: space-between;
  width: 94%;
}
.topbar-icon-list ul {
  display: flex;
  justify-content: space-evenly;
}
.topbar-icon-list ul li {
  list-style-type: none;
}
.topbar-icon-list ul li svg {
  width: 50px;
  height: 50px;
}
/*topbar*/

.responsive-menu {
  display: flex;
}

/* Add this media query to only hide the responsive menu on large screens */
@media (min-width: 900px) {
  .responsive-menu {
    display: none;
  }
}

@media (max-width: 800px) {
  .mobile_TableBody {
    padding-left: 30vh;
  }
  .divider {
    border-bottom: 10px solid rgb(178, 161, 161);
  }
  .css-10cbwbc-MuiTableRow-root.MuiTableRow-hover:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    display: block;
  }
  .MuiTable-root th {
    display: none;
  }
  .MuiTable-root td {
    display: flex;
    position: relative;
    align-items: baseline;
    justify-content: space-between;
  }
  .MuiTable-root td:before {
    content: attr(data-attr);
    position: relative;
    left: 15px;
    font-size: 13px;
    font-weight: 600;
  }
}
/*leftbar*/
.leftbar {
  box-shadow: 0 1px 2px #0000000d;
  background-color: #660000;
  height: 100%;
  color: white;
}
.leftbar-links {
  max-height: 100vh;
  overflow-y: auto;
}
.leftbar-links ul {
}
.leftbar-links ul li {
  list-style-type: none;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 0;
  cursor: pointer;
}
.leftbar-links ul li a {
  color: inherit;
}
.leftbar-links ul li a img {
  filter: contrast(3);
}
.leftbar-links ul li svg {
  font-size: 22px;
}
.leftbar-links ul li span {
  vertical-align: top;
}

.leftbar-links > ul > li > ul {
  display: none;
  padding-left: 15px;
}
.leftbar-links > ul > li.active > ul {
  display: block;
}
.leftbar-links > ul > li.active > ul > li > ul {
  display: none;
}
.leftbar-links > ul > li.active > ul > li > ul li {
  padding: 5px 0;
}

.logout-btn {
  padding: 0 50px;
  margin-bottom: 50px;
}
.logout-btn button {
  width: 100%;
}
/*leftbar */

/*dasboard*/
.page-wrapper {
  height: 100vh;
}
.pagewrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 10%;
}
.dashboard-page {
  overflow-y: scroll;
  height: 90%;
  padding-bottom: 25px;
  flex-wrap: wrap;
}
.dashboard-page::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers */
}

.table-page {
  overflow-y: scroll;
  height: 90%;
  flex-wrap: wrap;
}
.table-page::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers */
}
.scroll-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto; /* Allow horizontal scrolling */
  overflow-y: hidden; /* Hide vertical scrollbar */
  padding: 16px;
  gap: 16px;
  align-items: flex-start;
  white-space: nowrap; /* Prevent wrapping of content */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar in WebKit browsers */
}
.dashboard-sale-box-row {
  display: flex;
  gap: 20px;
}
.dashboard-sale-box {
  text-align: center;
  padding: 15px;
  color: #fff;
  border-radius: 10px;
  flex: 1;
}
.dashboard-sale-box svg {
  font-size: 35px;
}

.dashboard-order-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.dashboard-order-box {
  flex: 1;
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 5px;
}
.dashboard-order-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-order-icon svg {
  font-size: 25px;
}
.dashboard-order-txt {
  margin-left: 10px;
}

.dashboard-value-box {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
  border: 1px dashed #f1f5f7;
  border-radius: 0.25rem;
}
.dashboard-value-box-icon {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-value-box-icon span {
  font-size: 15px;
}
.dashboard-value-box-icon1 {
  border: 1px dashed #000;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.dashboard-value-box-icon1 svg {
  font-size: 25px;
}
.dashboard-value-box-count {
  border-top: 1px solid #00000021 !important;
  padding: 15px;
}
.dashboard-value-box-count span {
  display: flex;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.7);
}

.night .dashboard-order-box {
  background-color: #333;
}


.rowChart {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  flex-direction: row; 
  display: "flex";
  gap: "20px";
  padding: "20px 0";
}

.colm-md-6 {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1; 
}

@media (max-width: 480px) {
  .rowChart {
    flex-direction: column;
  }

  .colm-md-6 {
    padding: 10px;
  }
}

.circlechart {
  padding: 0 130px;
}
.chart-container {
  position: relative;
  width: 100%;
  height: 300px; 
  max-width: 100%; 
}
@media (max-width: 1024px) {
  .chart-container {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .chart-container {
    height: 210px; 
  }
}

@media (max-width: 480px) {
  .chart-container {
    height: 200px; 
  }
}

.dashboard-table {
  margin: 50px 0;
}

.dashboard-table-icon svg {
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.product_detail_tabs li {
  list-style-type: none;
  display: inline-block;
  padding: 10px 20px;
  /* cursor: pointer; */
}
.product_detail_tabs li.active {
  color: green;
  border-bottom: 1px solid green;
}
.page-header {
  font-weight: 500;
  font-size: 25px;
  align-items: center;
  display: flex;
  justify-content: center;
  background: #f7f7f7;
  margin-bottom: 20px;
}
.page_title {
  font-size: 24;
  font-weight: 500;
  margin-left: 1vh;
}

.input-field {
  margin-bottom: 20px;
}
/*image upload*/
.thumbsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 16px;
}
.thumb {
  display: inline-flex;
  border-radius: 2px;
  border: 1px solid #eaeaea;
  margin-bottom: 8px;
  margin-right: 8px;
  width: 100px;
  height: 100px;
  padding: 4px;
  box-sizing: border-box;
}
.thumbInner {
  display: flex;
  min-width: 0;
  overflow: hidden;
  position: relative;
  width: 100px;
  margin-right: 10px;
}
.thumbInner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/*image upload*/

/*addProduct*/

@media only screen and (max-device-width: 500px) {
  .login_cover {
    flex-direction: column;
  }
  .login_cover_img {
    width: 100%;
  }
  .login_cover_field {
    width: 100%;
    padding: 45px 15px;
  }

  .dashboard-sale-box-row {
    flex-direction: column;
  }
  .dashboard-order-row {
    flex-direction: column;
  }
  .circlechart {
    padding: 0;
  }
}
.popover-content {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.popover-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
}

.account-dropdown {
  position: absolute;
  top: 10px;
  right: 10px;
}

.account-dropdown.MuiIconButton-root {
  padding: 4px;
}

.account-dropdown.MuiIconButton-root:hover {
  background-color: #f5f5f5;
}

.account-dropdown.MuiMenu-paper {
  margin-top: 40px;
}
.Add_Title {
  cursor: move;
  display: flex;
  justify-content: center;
  background-color: #660000;
  color: white;
}
.Delete_PopUp {
  width: 70vh !important;
  height: 10vh !important;
}
.coupon_model_align {
  margin-block-start: 35px !important;
}
.doc_type {
  font-size: 14px !important;
  font-weight: 600 !important;
}
.success_status {
  color: green;
  font-size: larger;
}
.danger_status {
  color: red;
  font-size: larger;
}
.Image_title {
  display: flex;
  flex-direction: row;
  background: #660000;
  color: white;
}
.Submit_Document {
  visibility: hidden;
}
/* .transform-component-module_content__FBWxo{

  width:900vh;
  height:100vh;
} */
#account_settings {
  background: #660000;
  color: white;
  align-items: baseline;
  display: flex;
  flex-direction: column;
}
.custom-menu-paper {
  margin-top: 17px;
  background: #660000 !important;
  color: white !important;
}

.Policy_model_align {
  margin-block-start: 35px !important;
}

.driver_Input_label {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 10px !important;
}
.driver_Input {
  padding: 10px !important;
  width: 100% !important;
  border-radius: 9px !important;
}
.language-input {
  position: relative;
}

.language-input input[type="text"] {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 300px;
  z-index: 1;
}

.dropdown li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.dropdown li:hover {
  background-color: #f0f0f0;
}

.selected-languages {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.selected-languages li {
  margin-right: 10px;
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.selected-languages li button {
  font-size: 14px;
  margin-left: 5px;
  cursor: pointer;
}
.upload_file {
  background: #660000 !important;
  color: white !important;
  height: 52px;
  width: 250px;
}
.upload_file:hover {
  background: #660000 !important;
  color: white !important;
  height: 52px;
  width: 250px;
}
.view_detail_driver:hover {
  color: #660000 !important;
  cursor: pointer !important;
}
.table_data_heading {
  font-size: large;
}
.table_data_body {
  font-size: 20px;
  display: flex;
  align-items: center;
  display: flex;
  flex-direction: row;
}
.table_data_image {
  width: 100%;
  gap: 20;
}

.table_Head {
  background: antiquewhite;
}

.highlight_Text {
  color: black;
}
.normal_Text {
  color: grey;
}
