/* EVE SSO Auth Bar — shared styles */
.eve-auth-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Share Tech Mono', 'Exo 2', monospace, sans-serif;
  font-size: 12px;
}
.eve-auth-portrait {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid rgba(0, 180, 216, 0.3);
}
.eve-auth-name {
  color: #e2e8f0;
  letter-spacing: 0.05em;
}
.eve-auth-login,
.eve-auth-logout {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 2px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.eve-auth-login {
  background: rgba(0, 212, 255, 0.08);
  color: #00d4ff;
}
.eve-auth-login:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 180, 216, 0.5);
}
.eve-auth-logout {
  background: transparent;
  color: #5a6b85;
  border-color: rgba(0, 180, 216, 0.15);
}
.eve-auth-logout:hover {
  color: #fb7185;
  border-color: rgba(251, 113, 133, 0.3);
}
.eve-sync-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5a6b85;
  flex-shrink: 0;
  transition: background 0.3s;
  cursor: help;
}
