/* Auth Component Styles */
.auth-panel {
  border: 1px solid var(--stroke);
  padding: 10px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-info {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.google-auth-button {
  min-height: 36px;
}

.auth-signout {
  width: 100%;
  margin: 0;
  text-align: center;
}

.auth-signout.is-hidden {
  display: none;
}

body.signed-out .sidebar > *:not(#authPanel),
body.signed-out .resizer,
body.signed-out .card,
body.signed-out #dock-container {
  filter: blur(6px);
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
  transition: filter 180ms ease, opacity 180ms ease;
}

body.signed-out #authPanel {
  position: relative;
  z-index: 20;
  filter: none;
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
}

body.signed-out #authInfo,
body.signed-out #googleSignOutBtn {
  display: none;
}

body.signed-out .google-auth-button {
  display: block !important;
}
