* {
  font-family: "Nunito";
  font-optical-sizing: auto;
}

/* General styles */

body {
  font-family: Arial, Nunito;
  /* background: radial-gradient(farthest-corner circle at top, #2f65ac 0, #152a4d 100%) !important; */
  background: #fff567 !important;
  position: relative;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 100%;
  padding: 40px;
}

/* Ensures that the table-container can scroll horizontally when content overflows */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  /* Ensure it takes up the full width of its parent */
}

/* Optional: You can also style the table to prevent it from being squished */
.table {
  width: 100%;
  table-layout: fixed;
  /* Helps in maintaining the table's structure when there is a lot of data */
}

/* Optional: Style the table headers for better user experience */
.table th {
  white-space: nowrap;
  /* Prevent the table headers from wrapping */
}

.card {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Table styles */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table th,
.table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.table th {
  color: #48494a;
  background-color: #f4f4f4;
  font-weight: bold;
}

.table .ready {
  color: orange;
}

.table .success {
  color: green;
}

/* Pagination styles */
#processorAuditPaginator,
#createAuditPaginator {
  text-align: right;
  margin-top: 10px;
}

#processorAuditPaginator .page-item,
#createAuditPaginator .page-item {
  display: inline-block;
  margin: 0 5px;
}

#processorAuditPaginator .page-item a,
#createAuditPaginator .page-item a {
  text-decoration: none;
  padding: 5px 10px;
  background-color: #f4f4f4;
  border-radius: 4px;
}

/* Spinner styles */
.spinner {
  text-align: center;
  padding: 100px;
}

/* Spinner styles */
.spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  z-index: 9999;
  /* Make sure the spinner is on top */
}

.table-header {
  color: #48494a;
}

.spinner-icon {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid #fff;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spinner h3 {
  color: #fff;
  margin-top: 10px;
  font-size: 18px;
}


h3 {
  margin-top: 10px;
  color: #48494a;
}

/* Form section */
/* Ensure the row uses flexbox and does not wrap */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ensure each column takes up equal width */
.col {
  flex: 1;
  padding: 0 10px;
  /* Adds horizontal padding between the columns */
}

/* Remove extra padding and margin for fieldsets */
fieldset {
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  position: relative;
}

/* Position the legend at the top border */
legend {
  font-size: 14px;
  color: #888;
  padding: 0 5px;
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #fff;
}

/* Style the dropdown input */
.form-control {
  width: 100%;
  /* Ensure input takes full width of the column */
  padding: 10px 12px;
  color: #48494a;
  border: none;
  /* Remove border */
  font-size: 14px;
  background: transparent;
}

/* Pagination Styles */
#processorAuditPaginator,
#createAuditPaginator,
#createTableAuditPaginator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

#processorAuditPaginator button,
#createAuditPaginator button,
#createTableAuditPaginator button {
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

#processorAuditPaginator button:disabled,
#createAuditPaginator button:disabled,
#createTableAuditPaginator button:disabled {
  cursor: not-allowed;
  background-color: #ddd;
}

#processorAuditPaginator button:hover:not(:disabled),
#createAuditPaginator button:hover:not(:disabled),
#createTableAuditPaginator button:hover:not(:disabled) {
  background-color: #ddd;
}

#processorAuditPaginator span,
#createAuditPaginator span,
#createTableAuditPaginator span {
  font-size: 14px;
  font-weight: bold;
}

.status-ready {
  color: yellow;
}

.status-success {
  color: green;
}

.status-failed {
  color: red;
}

.name-heading {
  font-family: "Nunito";
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  /* color: #48494a; */
  color: #666666 !important;
  text-align: center;
  font-size: 2.2rem !important;
}