   /* Loader */

   /* .loader {
            margin: 0;
            padding: 0;
            font-family: sans-serif;
            background-color:rgb(0, 0, 0);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
        } */

   /* button {
            padding: 10px 20px;
            font-size: 1rem;
            margin-top: 20px;
            cursor: pointer;
        } */

   /* ==== Popup Loader Styles ==== */
   .popup-loader {
       position: fixed;
       inset: 0;
       z-index: 9999;
       display: flex;
       justify-content: center;
       align-items: center;
   }

   .popup-loader-bg {
       position: absolute;
       inset: 0;
       background-color: rgba(0, 0, 0, 0.4);
       backdrop-filter: blur(2px);
   }

   .popup-loader-spinner {
       position: relative;
       z-index: 1;
       background-color: #ffffff;
       padding: 2rem;
       border-radius: 12px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
       display: flex;
       flex-direction: column;
       align-items: center;
   }

   .multi-dual-ring {
       width: 64px;
       height: 64px;
       position: relative;
   }

   .multi-dual-ring::before,
   .multi-dual-ring::after {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       width: 64px;
       height: 64px;
       border: 5px solid transparent;
       border-radius: 50%;
       box-sizing: border-box;
   }

   .multi-dual-ring::after {
       border-top: 5px solid #ff3d00;
       /* red/orange */
       border-right: 5px solid #4caf50;
       /* green */
       animation: spin 1s linear infinite;
   }

   .multi-dual-ring::before {
       border-bottom: 5px solid #2196f3;
       /* blue */
       border-left: 5px solid #ffeb3b;
       /* yellow */
       animation: spinReverse 1.5s linear infinite;
   }

   @keyframes spin {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }

   @keyframes spinReverse {
       0% {
           transform: rotate(360deg);
       }

       100% {
           transform: rotate(0deg);
       }
   }

   .loader-text {
       margin-top: 1rem;
       font-size: 1rem;
       color: #333;
   }

   .hidden {
       display: none !important;
   }

   /* Loader */