/* Authentication UI Styles */

/* Hide content by default until authentication is confirmed */
body:not(.auth-verified) .layout,
body:not(.auth-verified) .app,
body:not(.auth-verified) .logo-mark,
body:not(.auth-verified) .background-accent {
  opacity: 0;
  visibility: hidden;
}

/* Show content after auth is verified */
body.auth-verified .layout,
body.auth-verified .app,
body.auth-verified .logo-mark,
body.auth-verified .background-accent {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.auth-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-name {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.sign-out-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
  font-weight: 500;
}

.sign-out-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sign-out-btn:active {
  transform: scale(0.98);
}
