html {
  font-size: 13px;
  font-weight: 400;
  font-family: Inter, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.page-loading {
  margin: 0;
  height: 100%;
  overflow: hidden;
  transition: none !important;
}

.splash-screen {
  display: none;
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, 'sans-serif';
  background-color: #fff;
}

.page-loading .splash-screen .loading-text {
  color: #0c0c0c;
  margin-left: 1.25rem;
  font-size: 1.075rem;
  font-weight: 500;
}

html[data-bs-theme='dark'] .page-loading .splash-screen {
  background-color: #151521;
  color: #ffffff;
}

.splash-screen .dark-logo {
  display: none;
}

.splash-screen .light-logo {
  display: block;
}

.light-logo {
  width: 100px;
  height: auto;
}

html[data-bs-theme='dark'] .splash-screen .light-logo {
  display: none;
}

html[data-bs-theme='dark'] .splash-screen .dark-logo {
  display: block;
}

.loader {
  width: 2rem;
  height: 2rem;
  border: 0.185rem solid #b89218;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.65s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}


.bg-pastel-pink {
  background-color: rgb(232, 221, 234) !important;
}

.bg-pastel-blue {
  background-color: rgb(209, 223, 236) !important;
}

.bg-pastel-green {
  background-color: rgb(119, 221, 119) !important;
}

.bg-pastel-yellow {
  background-color: rgb(253, 253, 150) !important;
}

.bg-pastel-purple {
  background-color: rgb(177, 156, 217) !important;
}

.bg-pastel-orange {
  background-color: rgb(255, 179, 71) !important;
}

.bg-pastel-red {
  background-color: rgb(255, 105, 97) !important;
}

.bg-pastel-turquoise {
  background-color: rgb(175, 238, 238) !important;
}

.bg-ink-blue {
  background-color: rgb(13, 59, 102) !important;
}

.bg-Pewter-Blue {
  background-color: rgb(147, 168, 187) !important;
}

.bg-lavendar-grey {
  background-color: rgb(202, 188, 205) !important;
}

.rs-picker-date>.rs-input-group.rs-input-group-disabled .rs-input {
  background-color: #dfdfdf;
}

.rs-input-group.rs-input-group-disabled {
  background-color: #dfdfdf !important;
}

.rs-picker-popup.rs-picker-popup-date {
  z-index: 1000;
}

/* .rs-picker.rs-picker-date .rs-picker-toggle {
  border: none !important;
  box-shadow: none !important;
  border-color: #ccc !important;
} */

.rs-picker.rs-picker-date .rs-picker-toggle:focus {
  outline: none !important;
  /* border-color: #ccc !important;  */
  box-shadow: none !important;
}

.rs-picker.rs-picker-date .rs-picker-toggle:hover {
  outline: none !important;
  border-color: #ccc !important;
  box-shadow: none !important;
}

.rs-picker-error>.rs-picker-input-group,
.rs-picker-error>.rs-picker-input-group:hover {
  border-color: #ccc !important;
}

/* Chatbot Icon */
.chatbot-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 55px;
  height: 55px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Popup Dialog */
.popup-dialog {
  position: fixed;
  bottom: 80px;
  right: 20px;
  height: 500px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

/* Popup Header */
.popup-header {
  background-color: #d7ac00;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

/* Close Button */
.close-button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.p-multiselect {
  width: -webkit-fill-available;
}

.sort-icon {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

th:hover .sort-icon {
  opacity: 1;
}

.apexcharts-xaxis-tooltip {
  display: none !important;
}

.sticky-col {
  position: sticky;
  left: 0;
  background: white !important;
  z-index: 2;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: #113c66 !important;
  color: white;
}

.sticky-border {
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}


.blink {
  animation: blink-animation 1s steps(2, start) infinite;
  color: red;
  font-weight: bold;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
