.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff; /* Change this to your preloader background color */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spinner */
.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #d66536;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
}

/* Keyframes for spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Pagination Styles */
.pagination-container {
  justify-content: center;
  margin: 5px;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
}

.page-link {
  display: inline-block;
  padding: 8px;
  margin: 0 4px;
  color: #d66536;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background-color: #d66536;
  color: #fff;
}

.page-link i {
  font-size: 16px;
}

.disabled {
  pointer-events: none; /* Disable all click events */
  opacity: 0.5; /* Dim the button to indicate it's disabled */
  cursor: not-allowed; /* Change cursor to indicate it's not clickable */
}

/* Container for the progress bar */
.progress-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  display: none;
}

/* Progress bar itself */
.progress-bar {
  height: 30px; /* Adjust height as needed */
  width: 100%; /* Start with 0% width */
  background-color: #76c7c0; /* Customize the color */
  transition: width 0.5s ease; /* Smooth transition effect */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text inside the progress bar */
.progress-text {
  color: white;
  font-weight: bold;
  font-size: 14px; /* Adjust font size as needed */
}

.admin-logo {
  max-width: 300px; /* Make sure the logo scales with the parent container */
  height: auto; /* Maintain the aspect ratio of the logo */
  display: block; /* Remove any inline spacing */
  margin: 0 auto; /* Center the logo horizontally */
}

@media (max-width: 768px) {
  .admin-logo {
    margin-bottom: -100px; /* Reduce the space between the logo and the next element */
    margin-top: -100px;
  }
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .admin-logo {
    max-width: 200px; /* Adjust size for larger screens */
  }
}

/* Media query for very large screens */
@media (min-width: 1200px) {
  .admin-logo {
    max-width: 500px; /* Increase size for ultra-large screens */
  }
}

/* General styles for order status badges */
.status-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px; /* Rounded corners */
  font-size: 14px;
  font-weight: bold;
  color: #fff; /* Default text color */
  text-align: center;
}

/* Specific statuses */
.pending {
  background-color: #ffc107; /* Yellow */
  color: #212529; /* Dark text */
}

.confirmed {
  background-color: #17a2b8; /* Cyan */
}

.delivered {
  background-color: #007bff; /* Blue */
}

.completed {
  background-color: #28a745; /* Green */
}

.cancelled {
  background-color: #dc3545; /* Red */
}

.failed {
  background-color: #6c757d; /* Gray */
}

.notification-banner {
  background-color: #007bff;
  color: white;
  font-size: 16px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

.clickable-notify {
  transition: transform 0.2s ease-in-out;
}

.clickable-notify:hover {
  transform: scale(1.02); /* Slight zoom effect on hover */
  background-color: #f0f0f0; /* Optional: Change background color */
}

.barcode-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 50px;
  align-items: center;
  font-family: Arial, sans-serif;
}

.barcode-tag {
  display: inline-flex;
  align-items: center;
  background-color: #007bff;
  color: #fff;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
}

.barcode-tag button {
  margin-left: 5px;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.barcode-tag button:hover {
  color: #ff0000;
}

.continue-shopping-button {
  background-color: white;
  color: #d66536;
  border: 1px solid #d66536;
  padding: 10px;
  margin: 10px 10px 0 10px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); */
}

.continue-shopping-button:hover {
  background-color: #d66536;
  color: white;

  /* border-radius: 5px; */
}

.view-cart-checkout-button {
  background-color: #d66536;
  color: white;
  border: 1px solid #d66536;
  padding: 10px;
  margin: 10px 10px 0 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.view-cart-checkout-button:hover {
  background-color: #d66536;
  color: white;
}


#stockInputs > * {
  margin-bottom: 10px; /* Adjust as needed */
}




