label {
  font-weight: bold;
}

.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  position: relative;
}

.submenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  /* Slow down the transition */
  background-color: #212121;

}

.submenu.show {
  max-height: 500px;
  /* Adjust to fit the submenu content */
  transition: max-height 1s ease;
  /* Slow down the transition */
}

.submenu li {

  line-height: 1.2;
  /* Adjust line height as needed */
  padding: 8px 16px;
  /* Add padding for spacing */
}

.submenu li a {
  text-decoration: none;
  color: #333;
}

.submenu li a:hover {
  color: #007bff;
}


.sidebar.open {
  left: 0;
  /* Show the sidebar when open */
}

.sidebar-header {
  padding: 15px;
  background-color: #444;
}

.close-btn {
  color: #fff;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}




/* Input Group Styling */
.input-group {
  position: relative;
  margin: 10px 0;
  width: 100%;
  /* Change width to 100% for responsiveness */
  max-width: 400px;
  /* Optional: Set a max-width to prevent it from growing too large */
}

.input-group input {
  font-size: 11px;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 0 0;
  background: transparent;
  width: 100%;
  outline: none;
  color: #333;
  margin-left: -11px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
  border-color: #009688;
  box-shadow: 0 2px 4px rgba(0, 150, 136, 0.2);
}

/* Label Styling */
.input-group label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease;
  transform-origin: left top;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
  top: -10px;
  left: 0;
  font-size: 11px;
  color: #009688;
}

/* Highlight Styling */
.input-group .highlight {
  position: absolute;
  height: 2px;
  background: #009688;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 0.3s ease;
}

.input-group input:focus~.highlight {
  width: 100%;
}

/* Bar Styling */
.input-group .bar {
  position: absolute;
  height: 2px;
  background: #009688;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 0.3s ease;
}

.input-group input:focus~.bar {
  width: 100%;
}

/* ComboBox Styling */
.combo-box-container {
  width: 100%;
  /* Make the container responsive */
  margin: 20px 0;
}

.combo-box-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  color: #333;
}

.combo-box {
  position: relative;
  display: inline-block;
  width: 100%;
  /* Make the ComboBox responsive */
}

.combo-box-select {
  width: 100%;
  /* Make the select element responsive */
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 11px;
  color: #333;
  background-color: #fff;
  appearance: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.combo-box-select:focus {
  border-color: #007bff;
}




/* Basic Card Styling */
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px;
  /* width: 300px; */
  /* Adjust width as needed */
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header Styling */
.card-header {
  padding: 15px;
  font-size: 14px;
  /* Reduced font size for the title */
  font-weight: 500;
  color: #0a0a0a;
  border-bottom: 1px solid #ddd;
}

/* Body Styling */
.card-body {
  padding: 15px;
  font-size: 11px;
  color: #000000;
}

/* Footer Styling */
.card-footer {
  padding: 15px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #ddd;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 600px) {
  .card {
    width: 100%;
    margin: 10px;
  }
}



/* Custom styles for the calendar */
.rbc-day-slot {
  min-height: 50px; /* Set a minimal height for the date column */
}

/* Optional: Adjust the height of slots if necessary */
.rbc-time-slot {
  min-height: 50px; /* Adjust slot height */
}




.filter-btn {
  font-size: 12px;
  color: #666;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.filter-btn:hover {
  background-color: #f0f0f0;
  color: #050505;
}


/* Pagination.css */
.pagination {
  display: flex;
  justify-content: left;
  margin: 20px 0;
}

.pagination button {
  margin: 0 5px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
}

.pagination button.active {
  background-color: #007bff;
  color: #fff;
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.export-icons {
  display: flex;
  gap: 10px; /* Space between icons */
}

.export-icon {
  cursor: pointer; /* Pointer cursor for clickable icons */
}

.export-icon:hover {
  color: #007bff; /* Change color on hover (optional) */
}

.card {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}

.card-header-light {
  background-color: #ffffff; /* Light color for the header */
  color: #080808; /* Darker color for the text */
}
.card-header-grey {
  background-color: #535353; /* Light color for the header */
  color: #ffffff; /* Darker color for the text */
}
.card-header-parrot {
  background-color: #dcf3dc; /* Parrot color for the header */
  color: #fbfdff; /* Darker color for the text */
}
.card-header-lightblue {
  background-color: #66b2ff; /* Light Blue color for the header */
  color: #fbfdff; /* Darker color for the text */
}
.card-header-darkblue {
  background-color: #284152; /* Parrot color for the header */
  color: #fbfdff; /* Darker color for the text */
}


.card-body {
  padding: 15px;
  background-color: #ffffff;
}
.table th{
  background-color:#fd6008;
  height: 40px !important; /* Force row height */
}
.table td{
 
  height: 30px !important; /* Force row height */
}
.table th, 
.table td {
  padding: 2px 5px !important; /* Force padding reduction */
  vertical-align: middle; /* Center the text vertically */
  text-align: center; /* Center the text horizontally */
}

.table tbody tr {
  height: 15px; /* Set a specific row height */
}

.table img {
  width: 15px; /* Adjust image width */
  height: 15px; /* Adjust image height */
  border-radius: 4px; /* Rounded corners for images */
}

.table-hover tbody tr:hover {
  background-color: #f1f1f1; /* Hover effect */
}

.table thead th {
  background-color: #f8f9fa; /* Light background for headers */
  font-weight: bold;
  color: #343a40; /* Dark text color */
}

.table-bordered {
  border: 1px solid #dee2e6; /* Add border around the table */
}

.table-bordered td, 
.table-bordered th {
  border: 1px solid #dee2e6; /* Add borders to cells */
}

.fa-edit {
  color: green; /* Edit icon color */
  transition: color 0.3s ease;
}

.fa-trash {
  color: red; /* Delete icon color */
  transition: color 0.3s ease;
}

.fa-edit:hover {
  color: #28a745; /* Hover color for edit icon */
}

.fa-trash:hover {
  color: #dc3545; /* Hover color for delete icon */
}


/* ProfileCard.css */
.profile-card {
  width: 350px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

.profile-card-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #007bff;
  color: #fff;
}

.profile-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
}

.profile-info h3 {
  margin: 0;
  font-size: 14px;
}

.profile-info p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.profile-card-body {
  padding: 20px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.info-item span {
  font-weight: bold;
}



.btn.btn-darkblue,
.wizard>.actions a.btn-darkblue,
.dt-buttons .btn-darkblue.dt-button,
.tablesaw-sortable th.tablesaw-sortable-head button.btn-darkblue,
.sweet-alert button.btn-darkblue,
.owl-theme .owl-nav .btn-darkblue[class*="owl-"],
button.btn-darkblue.fc-agendaDay-button.fc-state-default.fc-corner-right,
button.btn-darkblue.fc-month-button.fc-state-default.fc-corner-left,
button.btn-darkblue.fc-agendaWeek-button,
.btn-darkblue.fc-prev-button,
.btn-darkblue.fc-next-button,
.btn-darkblue.fc-today-button {
  background: #284152;
  border: solid 1px #284152;
}

.btn.btn-orange,
.wizard>.actions a.btn-orange,
.dt-buttons .btn-orange.dt-button,
.tablesaw-sortable th.tablesaw-sortable-head button.btn-orange,
.sweet-alert button.btn-orange,
.owl-theme .owl-nav .btn-orange[class*="owl-"],
button.btn-orange.fc-agendaDay-button.fc-state-default.fc-corner-right,
button.btn-orange.fc-month-button.fc-state-default.fc-corner-left,
button.btn-orange.fc-agendaWeek-button,
.btn-orange.fc-prev-button,
.btn-orange.fc-next-button,
.btn-orange.fc-today-button {
  background: #eea302;
  border: solid 1px #eea302;
}



.image-preview {
  display: flex;
  flex-wrap: wrap;
}

.preview-item {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}

.preview-item img {
  width: 100px;
  height: auto;
}

.delete-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

.preview-item:hover .delete-icon {
  display: block;
}

.loading-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  border-radius: 5px;
}


.fixed-width-btn {
  width: 150px; /* Adjust this value as needed */
  display: inline-block; /* Ensure it respects the width */
  margin-bottom: 10px; /* Adjust the value as needed */
}

.item-card {
  border: 1px solid #ccc; /* Border for the item card */
  border-radius: 8px; /* Rounded corners */
  padding: 15px; /* Inner padding */
  text-align: center; /* Centered text */
  background-color: #fff; /* White background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.item-image {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.item-name {
  margin: 10px 0 5px; /* Spacing for item name */
  font-size: 1.2em; /* Font size for item name */
}

.item-price {
  color: #FFD700; /* Gold color for price */
  font-weight: bold; /* Bold price */
}


.btn-info {
  background-color: #007bff; /* Adjust to your desired blue shade */
  border-color: #007bff; /* Consistent border color */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-info:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: scale(1.05); /* Scale effect on hover */
}

.item-card {
  border: 1px solid #ccc; /* Border for the item card */
  border-radius: 8px; /* Rounded corners */
  padding: 15px; /* Inner padding */
  margin-bottom: 10px;
  text-align: center; /* Centered text */
  background-color: #fff; /* White background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: transform 0.3s ease; /* Transition for hover effect */
}

.item-card:hover {
  transform: scale(1.03); /* Scale effect on hover */
}

.item-image {
  width: 100%; /* Full width */
  height: 130px; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for image */
}

.item-name {
  margin: 10px 10px 5px; /* Spacing for item name */
  font-size: 1.2em; /* Font size for item name */
}

.item-price {
  color: #FFD700; /* Gold color for price */
  font-weight: bold; /* Bold price */
  background-color: black;
}


.order-item {
  display: flex; /* Ensure items are flex containers */
  justify-content: space-between; /* Space between item name and controls */
  align-items: center; /* Center vertically */
}

.quantity-controls {
  display: flex; /* Ensure buttons and quantity are in a row */
  align-items: center; /* Center buttons vertically */
}

.quantity {
  margin: 0 8px; /* Adjust spacing around quantity text */
}

.btn-outline-secondary {
    border-color: #6c757d; /* Default border color */
}

.total-container {
  display: flex; /* Use flexbox for layout */
  justify-content: space-between; /* Space between total and button */
  align-items: center; /* Center align items vertically */
  margin-top: 20px; /* Space above total */
}

.total-amount {
  font-weight: bold; /* Bold total amount */
  color: #e96d08; /* Gold color for total */
}

.btn-dark-custom {
  background-color: #343a40; /* Dark color */
  color: #fff; /* White text */
}

.btn-dark-custom:hover {
  background-color: #23272b; /* Darker on hover */
  color: #fff; /* Keep white text */
}

.item-list-container {
  max-height: 400px; /* Set your desired height */
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: hidden; /* Enable vertical scrolling */
}

.table-card {
  border-radius: 8px;
  transition: box-shadow 0.3s;
  margin-bottom: 10px;
}

.table-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.table-color-0 {
  background-color: #f8d7da; /* Light red */
}

.table-color-1 {
  background-color: #d1ecf1; /* Light cyan */
}

.table-color-2 {
  background-color: #d4edda; /* Light green */
}

.table-color-3 {
  background-color: #fff3cd; /* Light yellow */
}

/* Font Awesome Icon styles */
.table-card .fa-table {
  color: #007bff; /* Change color of the icon */
}


.modal {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show {
  opacity: 1;
  transform: scale(1);
}
/* Modal content scrolling */
.modal-body-scrollable {
  max-height: 400px; /* Set your desired max height */
  overflow-y: auto; /* Enable vertical scrolling */
  padding: 10px;
}

/* Optionally set scroll behavior for modal-dialog */
.modal-dialog-scrollable {
  max-height: calc(100vh - 100px); /* Ensure it does not exceed viewport height */
}
/* POS CSS */

.btn-orange {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}

.btn-orange:hover {
  background-color: darkorange;
}





.invoice-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.9rem;
}
.invoice-table thead th {
  background: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 8px;
  text-align: center;
  border-bottom: 2px solid #ddd;
}
.invoice-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.invoice-table tbody tr:hover {
  background: #f0f8ff;
}
.invoice-table td, .invoice-table th {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.invoice-table td.readonly {
  background: #f9f9f9;
  font-weight: 600;
}
.invoice-container {
  overflow-x: auto;
  margin-bottom: 1rem;
}
.zindex-dropdown {
  z-index: 999;
  background: white;
}
