.custom-btn {
  width: 100%; /* Makes the button longer (full width of parent) */
  max-width: 300px; /* Optional: Limits the button's maximum width */
  margin: 0 auto; /* Centers the button horizontally */
  padding: 12px 20px; /* Adjusts padding for a larger button */
  font-size: 1.2rem; /* Optional: Increases font size */
}

.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: 20px;
}

.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 */
  }
}






