input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.defaultDataTable {
  width: 100%;
}

.comDataTable {
  width: 100%;
}

/*Loader*/
#loader {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.7);
}

#loader .load-spinner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

#loader .spinner {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader .spinner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  border-right-color: #3498db;
  animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

#loader .spinner::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #e74c3c;
  border-left-color: #e74c3c;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
}

#loader .spinner span {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
  backdrop-filter: blur(10px);
  animation: pulse-scale 2s ease-in-out infinite;
}

#loader .loader-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
  min-height: 30px;
  text-transform: uppercase;
  position: relative;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#loader .loader-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: slide-shine 2s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-scale {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes slide-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
/*Loader*/

.selectize-input {
  margin-top: 0px;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: #000;
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid
    var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.active > .page-link,
.page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-primary {
  background-color: #1a2035;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #3a4975;
  color: white;
}

.btn-primary:disabled {
  background-color: #3a4975;
  color: white;
  cursor: not-allowed;
  opacity: 0.65;
}

.bg-primary {
  background-color: #1a2035 !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
  top: 50%;
  left: 5px;
  height: 1em;
  width: 1em;
  margin-top: -9px;
  display: block;
  position: absolute;
  color: white;
  border: 0.15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: "Courier New", Courier, monospace;
  line-height: 1em;
  content: "+";
  background-color: #1a2035;
}

.esg-bg-primary {
  background-color: #1a2035;
  color: white;
}

.form-label {
  margin-bottom: 0.5rem;
}

.strong {
  font-weight: bold;
}

.esg-text-primary {
  color: #1a2035;
}

.hidden {
  display: none;
}

.w-100 {
  width: 100%;
}

.card-header-theme {
  background-color: #1a2035;
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.clickable {
  cursor: pointer;
}

.table-ver-center td,
th {
  vertical-align: middle !important;
}

/* Help modal loading */
.loading {
  --speed-of-animation: 0.9s;
  --gap: 6px;
  --first-color: #4c86f9;
  --second-color: #49a84c;
  --third-color: #f6bb02;
  --fourth-color: #f6bb02;
  --fifth-color: #2196f3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  gap: 6px;
  height: 100px;
}

.loading span {
  width: 4px;
  height: 50px;
  background: var(--first-color);
  animation: scale var(--speed-of-animation) ease-in-out infinite;
}

.loading span:nth-child(2) {
  background: var(--second-color);
  animation-delay: -0.8s;
}

.loading span:nth-child(3) {
  background: var(--third-color);
  animation-delay: -0.7s;
}

.loading span:nth-child(4) {
  background: var(--fourth-color);
  animation-delay: -0.6s;
}

.loading span:nth-child(5) {
  background: var(--fifth-color);
  animation-delay: -0.5s;
}

@keyframes scale {
  0%,
  40%,
  100% {
    transform: scaleY(0.05);
  }

  20% {
    transform: scaleY(1);
  }
}
/* Help modal loading */

/* Permission Module */
.vertical-middle td,
th {
  vertical-align: middle;
}

.div-border {
  border: 1px solid black;
}

.div-border p {
  margin-top: -0.9em;
  margin-left: 10px;
  margin-right: 10px;
  background-color: rgb(199, 199, 199);
  display: block;
  text-align: center;
  color: white;
}
/* Permission Module */

/* Spinner */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  border-radius: 50%;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  width: 36px;
  height: 36px;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  width: 36px;
  height: 36px;
  animation: spin89345 1s linear infinite;
}

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

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

/* Spinner-small */
.spinner-small {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  border-radius: 50%;
}

.spinner-small {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  width: 20px;
  height: 20px;
}

.spinner-small {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: transparent;
  width: 20px;
  height: 20px;
  animation: spin89345 1s linear infinite;
}

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

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

/* Toastify */
.toast-with-progress {
  position: absolute;
  display: inline-block;
}

.toast-circle-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  transition: width 0.5s linear;
  width: 100%;
}
/* Toastify */

.bg-card-headers {
  background-color: #1a2035;
}

/* Login */

.login-form-side {
  padding: 40px;
  color: rgb(61, 60, 60);
  padding-right: 100px;
}

@media only screen and (max-width: 992px) {
  .bg-login-image-mod {
    display: none;
  }
  .footer-login {
    display: block;
  }
  .login-form-side {
    padding: 40px;
    color: rgb(61, 60, 60);
    padding-right: 40px;
  }
}

.bg-login-image-mod {
  background: url(../images/login-img.jpg);
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}

.top-bar {
  vertical-align: middle;
  align-items: center;
}

.top-bar a {
  text-decoration: none;
}

.login-page-dropdown {
  display: inline;
}

.menu-text-trans {
  font-size: 16px;
  color: #12346d;
  font-weight: bold;
}

.eye-login-pass {
  border-top: none;
  border-left: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: white;
}

.eye-login-pass-initial {
  border-left: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: white;
}

.form-control-user-pass {
  border-right: none;
}

.form-control-user {
  border-radius: 0px;
  height: 60px;
}

.pageHeading {
  color: #12346d;
  font-weight: bold;
}

.note-editor.note-frame {
  background-color: #ffffff;
}

/* purchase order */
.po-form-section {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  margin-bottom: 20px;
}

.po-table th,
.po-table td {
  vertical-align: middle;
  text-align: center;
}

.po-total-section {
  text-align: right;
  font-weight: bold;
  font-size: 20px;
}

.po-subtotal {
  margin-top: 20px;
}
/* purchase order */

.text-justify {
  text-align: justify;
}

.small-text {
  font-size: 10px;
}

.small-text-td {
  font-size: 13px;
}

.small-text-2 {
  font-size: 12px;
}
.aligntext {
  color: #ffffff;
}

.heder-text {
  color: #0b6ec5;
}

.dashboard-card {
  border-left: 5px solid #444444;
  font-size: 20px;
  vertical-align: baseline;
  color: #444444;
  transition: transform 0.3s ease-in-out;
}

.dashboard-card .card-body {
  padding: 20px;
}

.no-decoration {
  text-decoration: none;
}

.dashboard-card:hover {
  transform: scale(1.01);
}

.dashboard-card a {
  text-decoration: none;
  color: #444444;
}

.text-size-change-head {
  font-size: 16px;
}

.text-size-change {
  font-size: 12px;
  padding-left: 5px;
}

#statusChart {
  max-width: 300px;
  max-height: 300px;
}

#conditionChart {
  max-width: 300px;
  max-height: 300px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4a90e2, #9013fe);
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9013fe, #4a90e2);
}

::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

.small-title {
  font-size: 16px;
  font-weight: bold;
  font-weight: normal;
  color: #333;
}

.btnUpdateWorkingPlan {
  cursor: pointer;
}

/* apps design */

#search-container {
  margin: 20px;
  display: flex;
  gap: 10px;
}

#search {
  width: 300px;
  padding: 10px;
}

#search-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

#search-btn:hover {
  background-color: #0056b3;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 20px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #000;
  padding: 20px;
}

.app-icon {
  width: 100px;
  height: 100px;
}

.app-name {
  margin-top: 10px;
  font-weight: bold;
}

.app-description {
  margin-top: 5px;
  font-size: 0.9em;
  text-align: center;
  color: #555;
}

.custom-table th,
.custom-table td {
  border-right: 2px solid #343a40; /* Dark border for columns */
}

.custom-table th:last-child,
.custom-table td:last-child {
  border-right: none; /* Remove right border for the last column */
}

.img-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

/* Training Dashboard */
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f8f9fa;
  margin: 0 auto 15px;
}

.icon-box i {
  font-size: 1.8rem;
  color: #007bff;
}

.chart-container {
  margin-top: 30px;
}

.chart-title {
  font-weight: 600;
  margin-top: 10px;
  color: #495057;
}

/* Training Dashboard */

.training-card {
  width: 350px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.training-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
  border-radius: 15px;
}

.training-card:hover .training-card-inner {
  transform: rotateY(180deg);
}

.training-card-front,
.training-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.training-card-front {
  background-color: #ffffff;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: rotateY(0deg);
  border-radius: 15px;
  border-bottom: 5px solid #1a2035;
  border-right: 3px solid #1a2035;
  border-left: 3px solid #1a2035;
  border-top: 5px solid #1a2035;
}

.training-card-back {
  background-color: white;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  border-radius: 15px;
  border-bottom: 5px solid #1a2035;
  border-right: 3px solid #1a2035;
  border-left: 3px solid #1a2035;
  border-top: 5px solid #1a2035;
}

.training-card-header {
  width: 95%;
  background-color: white;
  margin-top: 10px;
  text-align: center;
  border-radius: 150px;
  border: 2px solid #1a2035;
}

.training-card-footer {
  width: 95%;
  background-color: white;
  text-align: center;
  border-radius: 150px;
  border: 2px solid #1a2035;
}

.training-image-container img {
  max-width: 100%;
  max-height: 150px;
}

.training-card-border {
  width: 100%;
  border-bottom: 5px solid #1a2035;
  border-right: 3px solid #1a2035;
}

.categories-bar {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
}

.lms-card {
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  border-bottom: 5px solid #1a2035;
  border-right: 3px solid #1a2035;
}

.lms-card a {
  text-decoration: none;
}

.lms-content {
  padding: 1.1rem;
}

.lms-image {
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.lms-title {
  color: #111827;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.lms-desc {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.alert-warning {
  font-size: 1rem;
  background-color: #fff3cd;
  color: #856404;
}

/* map design */
#map {
  width: 100%;
  height: 500px;
}
/* map design */

.curs-pointer {
  cursor: pointer;
}

.bs-gutter-0 {
  --bs-gutter-x: 0 !important;
}

.company-logo {
  width: auto;
  height: 40px;
}

.pointer {
  cursor: pointer;
}

.dropdown-item {
  cursor: pointer;
}

.align-item-center {
  align-items: center;
}

/* Prograss Circle */
:root {
  --default-bg: #ccc;
}

.circle-progress-bar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0.6em;
  font-weight: bold;
  background: radial-gradient(closest-side, white 79%, transparent 80% 100%);
}

.circle-progress-bar::before {
  content: attr(data-progress) "%";
  position: absolute;
}
/* Prograss Circle */

/* Circle Prograss Mini */
:root {
  --circle-size: 30px;
  --circle-thickness: 4px;
}

.circle-progress-mini {
  position: relative;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background: conic-gradient(red 0%, #eee 0%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  color: white;
  box-sizing: border-box;
}

.circle-progress-mini::before {
  content: "";
  position: absolute;
  width: calc(var(--circle-size) - var(--circle-thickness) * 2);
  height: calc(var(--circle-size) - var(--circle-thickness) * 2);
  background: white;
  border-radius: 50%;
  z-index: 0;
}

.circle-progress-mini span {
  position: relative;
  z-index: 1;
  color: #000;
}
/* Circle Prograss Mini */

/* Milestone Circular Progress Bar */
:root {
  --circle-size: 30px;
  --circle-thickness: 3px;
}

.circle-progress-auto {
  position: relative;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background: conic-gradient(red 0deg, #eee 0deg); /* will be replaced by JS */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: rgb(26 32 53);
  box-sizing: border-box;
}

.circle-progress-auto::before {
  content: "";
  position: absolute;
  width: calc(var(--circle-size) - var(--circle-thickness) * 2);
  height: calc(var(--circle-size) - var(--circle-thickness) * 2);
  border-radius: 50%;
  z-index: 0;
}

.circle-progress-auto span {
  position: relative;
  z-index: 1;
}
/* Milestone Circular Progress Bar */

.list-group-item.active {
  background-color: #1a2035;
  border-color: #1a2035;
}

/* Dashboard Button */
.dark-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  /* padding: 8px; */
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.15s ease;
  width: 100%;
  text-align: center;
}

.dark-button::before,
.dark-button::after {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7d8082;
  transition: all 0.15s ease;
}

.dark-button::before {
  top: 0;
  border-bottom-width: 0;
}

.dark-button::after {
  bottom: 0;
  border-top-width: 0;
}

.dark-button:active,
.dark-button:focus {
  outline: none;
}

.dark-button:active::before,
.dark-button:active::after {
  right: 3px;
  left: 3px;
}

.dark-button:active::before {
  top: 3px;
}

.dark-button:active::after {
  bottom: 3px;
}

.dark-button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #0f1923;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.dark-button_lg::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.dark-button_lg::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}

.dark-button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #ff4655;
  transform: skew(-15deg);
  transition: all 0.2s ease;
}

.dark-button_text {
  position: relative;
}

.dark-button:hover {
  color: #0f1923;
}

.dark-button:hover .dark-button_sl {
  width: calc(100% + 15px);
}

.dark-button:hover .dark-button_lg::after {
  background-color: #fff;
}
/* Dashboard Button */

.b-r-0 {
  border-radius: 0 !important;
}

/* Slider */
.switch {
  position: relative;
  height: 1.5rem;
  width: 3rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 9999px;
  background-color: rgba(100, 116, 139, 0.377);
  transition: all 0.3s ease;
}

.switch:checked {
  background-color: rgba(77, 175, 80, 1);
}

.switch::before {
  position: absolute;
  content: "";
  left: calc(1.5rem - 1.6rem);
  top: calc(1.5rem - 1.6rem);
  display: block;
  height: 1.6rem;
  width: 1.6rem;
  cursor: pointer;
  border: 1px solid rgba(100, 116, 139, 0.527);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 3px 10px rgba(100, 116, 139, 0.327);
  transition: all 0.3s ease;
}

.switch:hover::before {
  box-shadow: 0 0 0px 8px rgba(0, 0, 0, 0.15);
}

.switch:checked:hover::before {
  box-shadow: 0 0 0px 8px rgba(77, 175, 80, 0.15);
}

.switch:checked:before {
  transform: translateX(100%);
  border-color: rgba(77, 175, 80, 1);
}
/* Slider */

/* Premium Search Bar */
.search-bar-premium {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 30px;
}

.search-form-premium {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
}

.search-icon-premium {
  position: absolute;
  left: 20px;
  font-size: 18px;
  color: #1a2035;
  z-index: 1;
  pointer-events: none;
}

.search-form-premium input {
  width: 100%;
  padding: 8px 50px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  font-size: 14px;
  color: #1a2035;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(26, 32, 53, 0.1);
}

.search-form-premium input:focus {
  outline: none;
  border-color: #1a2035;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(26, 32, 53, 0.2);
}

.search-form-premium input::placeholder {
  color: #6c757d;
  font-size: 14px;
}

.search-loader {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
}

.search-loader .spinner-border {
  width: 20px;
  height: 20px;
  border-width: 2px;
  color: #1a2035;
}

.search-results-premium {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 800px;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 24px rgba(26, 32, 53, 0.15);
  max-height: 400px;
  overflow-y: auto;
}

.search-results-premium::-webkit-scrollbar {
  width: 6px;
}

.search-results-premium::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.search-results-premium::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.search-results-premium::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.search-results-premium li {
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.search-results-premium li:last-child {
  border-bottom: none;
}

.search-results-premium li:hover {
  background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
}

.search-results-premium .supplier-link {
  text-decoration: none;
  display: block;
  color: inherit;
  padding: 14px 20px;
}

.search-results-premium .supplier-link:hover {
  color: inherit;
}

.search-results-premium .result-count {
  padding: 10px 20px;
  font-size: 12px;
  color: #6c757d;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  font-weight: 600;
}

.search-results-premium .supplier-name {
  font-weight: 600;
  font-size: 14px;
  color: #1a2035;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.search-results-premium .supplier-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.search-results-premium .badge-registration {
  background: #fff3cd;
  color: #856404;
}

.search-results-premium .badge-registered {
  background: #d1e7dd;
  color: #0f5132;
}

.search-results-premium .badge-imported {
  background: #cfe2ff;
  color: #084298;
}

.search-results-premium .badge-pending {
  background: #ffe5d0;
  color: #cc5500;
}

.search-results-premium .supplier-description {
  font-size: 13px;
  color: #6c757d;
  display: block;
}

.search-results-premium .no-results {
  padding: 20px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .search-bar-premium {
    margin: 0 15px;
  }
  
  .search-form-premium {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .search-bar-premium {
    margin: 0 10px;
  }
  
  .search-form-premium {
    max-width: 100%;
  }
  
  .search-form-premium input {
    padding: 7px 45px;
    font-size: 13px;
  }
}
/* Premium Search Bar */

.close-info-modal {
  background: #dcdee0;
  font-size: xx-large;
}

.close-info-modal-content {
  background: #dcdee0;
}

.fs-20 {
  font-size: 20px !important;
}

/* Circle progress for score card */
.circle-progress-wrapper {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  margin-right: 10px;
}

.circle-progress-score-card {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d6efd;
  background-color: #fff;
}

.circle-progress-text {
  z-index: 1;
}
/* Circle progress for score card */
.border-curved {
  border-radius: 25px !important;
  /* box-shadow: 1.4px 2.9px 2.9px hsl(0deg 0% 0% / 0.46); */
}

.dashboard-vendor-info {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.dashboard-vendor-info a {
  text-decoration: none;
  color: #444444;
}

.dashboard-vendor-info:hover {
  transform: scale(1.01);
}

.mb-20-px {
  margin-bottom: 20px !important;
}

@media (min-width: 768px) {
  .pe-hd-md-4 {
    padding-right: 1.9rem !important;
  }
}

.fs-12 {
  font-size: 12px !important;
}

.btn-active {
  background-color: #596b85;
  border-color: #0a0a0a;
}
