html[data-auth-state='pending'] [data-auth-login-desktop],
html[data-auth-state='pending'] [data-auth-start-desktop],
html[data-auth-state='pending'] [data-auth-login-mobile],
html[data-auth-state='pending'] [data-auth-start-mobile],
html[data-auth-state='pending'] [data-auth-avatar-desktop],
html[data-auth-state='pending'] [data-auth-avatar-mobile] {
  display: none !important;
}

html[data-auth-state='signed-in'] [data-auth-login-desktop],
html[data-auth-state='signed-in'] [data-auth-start-desktop],
html[data-auth-state='signed-in'] [data-auth-login-mobile],
html[data-auth-state='signed-in'] [data-auth-start-mobile] {
  display: none !important;
}

[data-auth-avatar-desktop],
[data-auth-avatar-mobile] {
  display: none !important;
}

html[data-auth-state='signed-in'] [data-auth-avatar-mobile] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

html[data-auth-state='signed-in'] [data-auth-avatar-desktop] {
  display: none !important;
}

[data-auth-work-desktop],
[data-auth-work-mobile] {
  display: none !important;
}

html[data-auth-state='signed-in'] [data-auth-work-mobile] {
  display: inline-flex !important;
  align-items: center;
}

html[data-auth-state='signed-in'] [data-auth-work-desktop] {
  display: none !important;
}

[data-auth-pending-desktop],
[data-auth-pending-mobile] {
  display: none;
  pointer-events: none;
}

html[data-auth-state='pending'] [data-auth-pending-mobile] {
  display: inline-flex !important;
  align-items: center;
}

html[data-auth-state='pending'] [data-auth-pending-desktop] {
  display: none !important;
}

@media (min-width: 768px) {
  html[data-auth-state='signed-in'] [data-auth-work-desktop] {
    display: inline-flex !important;
    align-items: center;
  }

  html[data-auth-state='signed-in'] [data-auth-work-mobile] {
    display: none !important;
  }

  html[data-auth-state='signed-in'] [data-auth-avatar-desktop] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  html[data-auth-state='signed-in'] [data-auth-avatar-mobile] {
    display: none !important;
  }

  html[data-auth-state='pending'] [data-auth-pending-desktop] {
    display: inline-flex !important;
    align-items: center;
  }

  html[data-auth-state='pending'] [data-auth-pending-mobile] {
    display: none !important;
  }
}

.auth-pending-pill {
  width: 96px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.7), rgba(241, 245, 249, 0.95), rgba(226, 232, 240, 0.7));
  background-size: 220% 100%;
  animation: auth-shell-shimmer 1.15s linear infinite;
}

.auth-pending-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.7), rgba(241, 245, 249, 0.95), rgba(226, 232, 240, 0.7));
  background-size: 220% 100%;
  animation: auth-shell-shimmer 1.15s linear infinite;
}

@keyframes auth-shell-shimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}
