/* Panor Unified Auth — Google Sign-In button styles */
.panor-auth-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.panor-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #dadce0;
  border-radius: 24px;
  background: #fff;
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.panor-auth-btn:hover {
  box-shadow: 0 1px 3px rgba(60,64,67,.3);
  background: #f8f9fa;
}
.panor-auth-btn .g-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.panor-auth-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.panor-auth-avatar:hover { border-color: #4285f4; }
.panor-auth-name {
  font-size: 13px;
  color: #5f6368;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.panor-auth-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  min-width: 180px;
  z-index: 10000;
  overflow: hidden;
}
.panor-auth-menu-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  font-size: 13px;
  color: #3c4043;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.panor-auth-menu-item:hover { background: #f1f3f4; }
.panor-auth-menu-item.danger { color: #ea4335; }
