/* =========================================================
   SIME LOADER GLOBAL
   ========================================================= */
#sime-global-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
}

#sime-global-loader .sime-loader-box {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sime-global-loader .sime-loader-ring {
  position: absolute;
  inset: 0;
  border: 4px solid #E7F4EF;
  border-top-color: #43b02a;
  border-right-color: #0F6E56;
  border-radius: 50%;
  animation: sime-spin 0.9s linear infinite;
}

#sime-global-loader .sime-loader-badge {
  width: 50px;
  height: 30px;
  border-radius: 8px;
  background: #43b02a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(67,176,42,0.3);
  animation: sime-pulse 1.4s ease-in-out infinite;
}

#sime-global-loader .sime-loader-text {
  font-size: 13px;
  font-weight: 600;
  color: #5A6675;
}

@keyframes sime-spin { to { transform: rotate(360deg); } }
@keyframes sime-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}