  .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;
  }

  .editable {
      cursor: pointer;
      width: 100%;
      height: 100%;
      min-height: 24px;
      min-width: 24px;
  }

  .rn_edit_ico {
      display: none;
  }

  .editable:hover .rn_edit_ico {
      display: inline-block;
  }

  .select2-container--default .select2-selection--single .select2-selection__placeholder {
      color: grey !important;
      font-style: italic;
  }


  /*Floating buttons */

  .fab-container {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1055;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      padding: 1.5rem 0;
      background: #fff;
      box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  }

  .fab-container .btn {
      min-width: 180px;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  @media (max-width: 576px) {
      .fab-container .btn {
          min-width: 120px;
          font-size: 1rem;
          padding: 0.75rem 0.5rem;
      }
  }