 .loadingg {
      position: fixed;
      z-index: 999;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: radial-gradient(rgb(255 255 255 / 96%), rgb(237 237 237 / 38%));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-family: sans-serif;
    }

    

    .loadindform {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%; /* เต็มจอ */
      font-family: "Kanit", sans-serif;
    }

    .loader {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .logo {
      width: 160px;
      height: 100px;
      margin-bottom: 20px;
      animation: pulse 1.5s infinite;
    }

    .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain; /* กันภาพบิด */
    }

    .spinner {
      width: 60px;
      height: 60px;
      border: 6px solid #e0e0e0;
      border-top: 6px solid #3b82f6;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 15px;
    }

    .text {
      font-size: 18px;
      font-weight: 500;
      color: #374151;
    }

    @keyframes spin {
      0% { transform: rotate(0deg);}
      100% { transform: rotate(360deg);}
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .reload-icon {
      width: 80px;
      height: 80px;
      animation: spin 1s linear infinite;
      margin-bottom: 20px;
    }

    @keyframes spin {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loading-text {
      font-size: 20px;
    }