.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2d3141; /* Transparan */
    z-index: 9999999; /* Menempatkan loader di atas konten */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .loader img {
    margin-bottom: 10px; /* Jarak antara logo dan bar loading */
    /*animation: pulse 1s infinite alternate; /* Animasi terang dan redup */
    width: 130px;
  }
  
  

  .time-track{
    position: absolute; /* Mengubah display menjadi position */
    bottom: 7%; /* Menggeser ke bagian paling bawah */
    left: 50%; /* Posisi horizontal di tengah */
    transform: translate(-50%, 7%); /* Menggeser ke kiri sejauh 50% lebar sendiri */
    font-family: "Kode Mono", monospace;
    font-weight: 700;
    font-size: 16px;
    color: aliceblue;
    width: max-content;
}



  
  @keyframes pulse {
    0% { opacity: 0.2; } /* Redup */
    100% { opacity: 1; } /* Terang */
  }