/* Loading Spinner Styles */
.fullscreen-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .fullscreen-loading_transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f6f6f600;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .fullscreen-loading img {
    width: auto;
    height: 80px;
    animation: pulse-loading 2s infinite ease-in-out;
  }

  .fullscreen-loading_transparent img {
    width: auto;
    height: 80px;
    animation: pulse-loading 2s infinite ease-in-out;
  }
  
  @keyframes pulse-loading {
    0%, 100% {
      opacity: 0.4;
      transform: scale(0.8);
    }
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
  }