.loader-dots {
  display: inline-flex;
  gap: 4px;
}

.loader-dots span {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  animation: dotsAnimation 1.4s infinite;
}

.loader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotsAnimation {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }

  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

.mt-10 {
  margin-top: 6rem;
  /* o lo que necesites */
}

.is-invalid {
  border-color: #dc3545 !important;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
}

.custom-select-dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  background: #212529;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  z-index: 9999;
  display: none;
  max-height: 320px;
  overflow: hidden;
}

.custom-select.open .custom-select-dropdown {
  display: block;
}

.custom-select-options {
  max-height: 240px;
  overflow: auto;
  padding: 0.25rem 0;
}

.custom-select-option {
  padding: 0.6rem 0.9rem;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option.active {
  background: rgba(0, 0, 0, 0.06);
}

.custom-select-option[aria-selected="true"] {
  font-weight: 600;
}

.icon-lg {
  font-size: 64px;
}

@media (max-width: 1025px) {
  .page-title {
    font-size: 12px;
  }
}

.kai-card {
  background: linear-gradient(135deg, #1f2933, #111827);
  color: #fff;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.kai-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.kai-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -30px;
  right: -30px;
}

.kai-title {
  font-size: 14px;
  opacity: 0.7;
}

.kai-value {
  font-size: 36px;
  font-weight: 800;
}

.kai-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 6px;
}
