/* Overrides locais da página do Explorer — movidos do <style> inline
   (regra absoluta: nenhum CSS inline fora de componentes). */

.panel-header__actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.explorer-page .btn-primary,
.explorer-page .btn-secondary {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.explorer-page .btn-primary {
  background: #3b82f6;
  color: white;
}

.explorer-page .btn-primary:hover {
  background: #2563eb;
}

.explorer-page .btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.explorer-page .btn-secondary:hover {
  background: #e5e7eb;
}

.explorer-page .graph-container {
  width: 100%;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
}

.explorer-page .g2d-container,
.explorer-page .g3d-container {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.explorer-page .g2d-app,
.explorer-page .g3d-app {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.explorer-page #graph-3d-container {
  display: none;
}

.explorer-page .visualization-panel {
  min-height: 600px;
  display: flex;
  flex-direction: column;
}
