* {
  font-family: "open sans", sans-serif !important;
}

#login-form-body {
  background-attachment: fixed;
  background-image: url('../assets/images/p.png');
  background-size: 1000px 800px;
  background-position: left top;
  background-repeat: no-repeat;
}


div.dt-container .dt-input {
  width: 100px !important;
}

.dt-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100% !important;
  max-width: 200px !important;
}

.dt-search input.dt-input {
  flex: 1;
  width: 100% !important;
}

.dt-info {
  margin: 8px 0 !important;
}



/* Toast container - fixed at top-right */
#toast-success,
#toast-danger,
#toast-warning,
#toast-info,
#toast-default {
  position: fixed !important;
  top: 20px;
  right: 20px;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out, fadeOut 0.5s ease-in-out 4.5s forwards;
  border: 1px solid #d1d5db;
}

/* Fade animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
  }
}



/* [data-tabs-toggle] .active {
  @apply text-orange-600 border-orange-600 !important;
} */


.select2-container--default .select2-selection--single {
  background-color: #f9fafb;
  height: 42px;
  border: 1px solid #d1d5db;
  display: flex;
  /* align-items: center; */
  padding: 0 12px;
  border-radius: 8px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f97316;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}
.select2-container .select2-selection--multiple {
  background-color: #f9fafb;
  min-height: 42px;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  /* padding: 4px 8px; */
  border-radius: 8px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
   /* border-color: #f97316; */
   border: 2px solid #f97316;
}

.tagify {
  --tags-focus-border-color: #f97316;
  height: 42px;
}


@media screen and (max-width: 767px) {
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell.dt-layout-start {
    text-align: start;
  }

  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell.dt-layout-end {
    text-align: end;
  }
}



/* Always reserve scrollbar space (avoid layout shift) */
html {
  overflow-y: scroll;
  /* Forces scrollbar even if not needed */
}

/* Scrollbar styling for Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
  /* Slim width */
  height: 8px;
}


::-webkit-scrollbar-thumb {
  /* background-color: #ea580c ; Orange thumb */
  border-radius: 9999px;
  /* Fully rounded */
  /* border: 2px solid #f9f9f9; Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
  /* background-color: #f97316; Darker orange on hover */
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  /* slim */
  /* scrollbar-color: #ea580c #f9f9f9; thumb track */
}