  .skeleton {
      background-color: #e0e0e0;
      border-radius: 4px;
      display: inline-block;
      height: 1rem;
      animation: pulse 1.5s infinite ease-in-out;
  }

  .skeleton.sm {
      height: 0.75rem;
  }

  .skeleton.md {
      height: 1rem;
  }

  .skeleton.lg {
      height: 1.25rem;
  }

  .skeleton-block {
      width: 100%;
  }

  @keyframes pulse {
      0% {
          opacity: 1;
      }

      50% {
          opacity: 0.4;
      }

      100% {
          opacity: 1;
      }
  }


  .datatable-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(255, 255, 255);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;

      display: none;

  }

  .nav-link.active {
      background-color: #f19020 !important;
  }

  .otp-inputs {
      gap: 10px;
  }

  .otp-input {
      width: 40px;
      height: 40px;
      text-align: center;
      font-size: 24px;
      border: 1px solid #ccc;
      border-radius: 5px;
  }

  body.modal-open {
        overflow: auto !important;
        position: static !important;
    }