.loader-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6); /* dim the page */
  backdrop-filter: blur(2px);
  z-index: 9999;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 6px solid #e5e5e5;
  border-top-color: rgb(224 176 97);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

img.profile-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}