div#app {
  padding: 15px;
}

img.dole-logo {
  height: 2rem;
}

.object-fit-contain {
  object-fit: contain !important;
}

/* loader  */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner-square {
  display: flex;
  flex-direction: row;
  width: 90px;
  height: 120px;
}

/* modified */
.spinner-square > .square {
  width: 17px;
  height: 56px; /* Reduced by 30% */
  margin: auto;
  border-radius: 4px;
}

.square-1,
.square-2,
.square-3 {
  animation: square-anim 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite; /* Adjusted duration for smoother animation */
}

.square-2 {
  animation-delay: 200ms;
}

.square-3 {
  animation-delay: 400ms;
}

@keyframes square-anim {
  0%,
  100% {
    height: 56px;
    background-color: rgb(111, 163, 240);
  }
  40% {
    height: 78.4px; /* Reduced by 30% */
    background-color: rgb(111, 200, 240);
  }
  80% {
    height: 56px;
  }
}

#wrapper {
  display: none; /* Hide the main content initially */
}

/* loader end */

/* login  */

/* login end */

/* Toast */
.colored-toast.swal2-icon-success {
  background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #0dcaf0 !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}
/* Toast end */

/* Select2 width */
.select2 {
  width: 100% !important;
}
/* Select2 width  end*/

/* Table header */
table.custom-table-header thead th {
  background-color: #4e73df;
  color: #fff;
  font-weight: 100;
  white-space: nowrap;
}
/* Table header end */

/* Nav Tab */
.nav-tabs .nav-link {
  color: #808080 !important;
}

.nav-tabs .nav-link.active {
  font-weight: bolder !important;
  background-color: #4e73df;
  color: #fff !important;
}

.nav-tabs .nav-link.active img {
  filter: invert(1);
}

/* Nav Tab END */

/* datatable select */

table.dataTable > tbody > tr.selected > td.select-checkbox:after,
table.dataTable > tbody > tr.selected > th.select-checkbox:after {
  content: "✓" !important;
  font-size: 20px !important;
  margin-top: -18px !important;
  margin-left: -6px !important;
  text-align: center !important;
}

/* datatable select end */

/* Fieldset */
#exemption_form fieldset:not(:first-of-type) {
  display: none;
}

#exclusion_form fieldset:not(:first-of-type) {
  display: none;
}

/* custom modal size */

.custom-modal-xxl {
  max-width: 90% !important;
}

@media (max-width: 500px) {
  .custom-modal-xxl {
    max-width: 100% !important;
  }
}

.custom-fs-small {
  font-size: 0.9rem;
}

/* 2x2 Picture Viewing (Pre-Evaluation Page) */
.two-by-two-container {
  width: 2in;
  height: 2in;
  display: inline-block;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f8f9fa;
}

/* Styles for the image inside the container */
.two-by-two-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the entire image is visible */
}

/* Client-side Feedback Button */
@keyframes pump {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pumping-button {
  animation: pump 1.5s infinite;
  background-color: transparent; /* Transparent background for outline style */
  color: #007bff; /* Primary color for text */
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px; /* Rounded design for modern feel */
  border: 2px solid #007bff; /* Outline primary color */
  cursor: pointer;
  text-decoration: none;
  box-shadow: none; /* Removed shadow for cleaner outline style */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.pumping-button:hover {
  background-color: #007bff; /* Filled primary color on hover */
  color: #fff; /* White text on hover */
  transform: scale(1.1); /* Slightly larger scale */
}

.pumping-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.5);
}
/* Client-side Feedback Button END*/
