@charset "UTF-8";
* {
  border-radius: 2px !important;
}

.rounded,
.audio-iframe,
.img-fluid,
iframe {
  border-radius: 0px !important;
}

@font-face {
  font-family: "BBBDMSans";
  src: url("../font/BBBDMSans-Light.woff2") format("woff2");
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: "BBBDMSans";
  src: url("../font/BBBDMSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "BBBDMSans";
  src: url("../font/BBBDMSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "BBBDMSans";
  src: url("../font/BBBDMSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "BBBDMSans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #003333;
  background-color: rgb(239, 239, 237);
}

.banner-image {
  display: block;
  width: 100%;
  max-width: 862px;
  height: auto;
  margin: 0;
}

.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
main {
  background: rgb(239, 239, 237);
  padding: 2rem;
  border-radius: 0px;
  margin-bottom: 0rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
}

.page-content h3 {
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-size: 1rem;
  font-weight: 600;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content img {
  max-width: 100%;
  height: auto;
}

.page-content a {
  color: #003333;
  text-decoration: none;
  font-weight: 600;
}

.card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.project-header {
  width: 100%;
  max-width: 800px;
  margin: 0;
  padding: 0;
}

.field-value.pipe-separated {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  background: #e3f2fd;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75em;
}

.icon {
  color: #003333;
}

.site-shell {
  display: flex;
  min-height: 100vh;
}

.site-header {
  --header-width: 150px;
  /* Define a CSS variable for the header width */
  max-width: 150px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--header-width);
  background: #ffffff;
  z-index: 1030;
  border: none;
  /*border-right: 1px solid rgba(0, 0, 0, 0.08);*/
}

.site-header .navbar {
  min-height: 100vh;
  width: 100%;
  border: none;
  box-shadow: 0px 0px 10px rgba(26, 51, 51, 0.4);
  margin: 0;
  padding: 1.25rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-header .navbar-brand {
  margin-bottom: 0rem;
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  font-size: 1rem;
  line-height: 1.2;
  color: #003333;
}

.site-header .navbar-toggler {
  display: none;
}

.site-header .navbar-collapse {
  display: block !important;
}

.site-header .navbar-nav {
  flex-direction: column;
  gap: 0rem;
  margin-top: 1rem;
  height: 100%;
}

.site-header .navbar-nav .nav-link {
  padding: 0.2rem 0;
}

.content-wrapper {
  margin-left: 150px;
  flex: 1;
}

.page-wrapper {
  max-width: none;
  margin: 0;
  padding-left: 0rem;
  padding-right: 0rem;
}

.nav-item {
  margin-bottom: 0.5rem;
}

.nav-link {
  line-height: 1.2;
  color: rgba(0, 51, 51, 0.7411764706);
}

.open-menu-btn {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 1rem;
  z-index: 1001;
  cursor: pointer;
}

.close-menu-btn {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 1rem;
  z-index: 1050;
  cursor: pointer;
}

/* Subpages styling */
.subpages-list {
  margin-left: 0.8rem;
  padding-left: 0.5rem;
  /* border-left: 1px solid rgba(0, 0, 0, 0.1); */
  list-style: none;
  display: none;
  /* Hidden by default */
}

.nav-item:hover > .subpages-list {
  display: block;
  /* Show on hover */
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
  .subpages-list {
    display: block;
    /* Always visible on smartphones/tablets */
  }
}
.subpage-item {
  margin-bottom: 0em;
  margin-top: 0em;
}

.subpage-link {
  font-size: 0.9em;
  opacity: 0.8;
  padding: 0.1rem 0;
  display: block;
}

.subpage-link:hover {
  opacity: 1;
}

/* Mobile-specific styles */
@media (max-width: 768px), (max-device-width: 768px) {
  .site-header {
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .site-header.is-open {
    transform: translate3d(0, 0, 0);
  }
  .content-wrapper {
    margin-left: 0;
    max-width: 100vw;
    overflow-x: auto;
  }
  .open-menu-btn {
    display: block;
  }
  .close-menu-btn {
    display: none;
  }
}
/* Panel link separator */
.navbar-nav > li:last-child {
  margin-top: auto;
  padding-top: 0.5rem;
}

.page {
  max-width: 800px;
  margin-left: 0;
}

.page-content p:has(code) {
  margin-left: 22.5%;
}

/* CSS Variables for z-index management */
:root {
  --z-slider: 2;
  --z-header: 2;
  --z-controls: 120;
  --z-buttons: 51;
  --z-node-card: 60;
  --z-overlay: 100;
}

/* Override base styles for graph page */
main {
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.my-4 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.graph-container-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

h1 {
  color: #333;
  margin-bottom: 10px;
}

.graph-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#indexViewContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-overlay);
  background: white;
  border-top: 1px solid #dee2e6;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

#graphViewContainer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.index-table-section {
  margin-top: 0;
  padding: 20px;
  min-height: 20vh;
}

.sidebar {
  display: none;
}

#indexViewContainer .index-table-controls {
  margin-top: 0;
}

#indexViewContainer .index-table-controls .row.g-2 {
  row-gap: 10px;
}

#indexViewContainer .index-table-controls .form-control,
#indexViewContainer .index-table-controls .form-select {
  min-height: 42px;
  min-width: 0;
}

#indexViewContainer .index-table-controls .form-check-label {
  white-space: nowrap;
}

#indexViewContainer.visible {
  transform: translateY(50px);
}

#loadingIndicator {
  padding: 10px;
  background: #e3f2fd;
  border-radius: 4px;
  margin-bottom: 10px;
  flex: 1;
  margin-right: 10px;
}

.filter-section {
  margin-top: 0;
  padding: 0;
  border: none;
}

.filter-section label {
  display: none;
}

/* GRAPH SEARCH & CATEGORY CONTROLS - NEW - START */
.graph-search-controls {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0px;
  min-height: 24px;
  margin-bottom: 0;
}

.graph-search-icon-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #003333;
}

.graph-search-icon-btn:hover {
  color: #000;
}

.graph-search-input {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  outline: none;
  width: 0px;
  padding: 2px 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  display: inline-block;
  transition: width 0.2s, opacity 0.2s, visibility 0.2s;
}

.graph-search-input.expanded {
  width: 220px;
  opacity: 1;
  visibility: visible;
}

#graph-interviewee-toggle.active {
  color: #FFA500;
}

.graph-category-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.graph-category-options,
.graph-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 0;
  min-width: 220px;
  max-width: 320px;
  display: none;
  z-index: var(--z-buttons);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-height: 360px;
  overflow-y: auto;
}

.graph-category-options.visible,
.graph-search-results.visible {
  display: block;
}

.category-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
}

.category-option:hover {
  background: #f5f5f5;
}

.category-swatch {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 1px !important;
  border: 2px solid #999;
  background: transparent;
  box-sizing: border-box;
}

.category-option.selected .category-swatch {
  background: var(--swatch-color, #999);
}

.search-result-option {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 13px;
}

.search-result-option:hover {
  background: #f5f5f5;
}

.search-result-option .search-result-name {
  color: #333;
}

.search-result-option .search-result-match {
  font-size: 0.75em;
  color: #777;
}

/* GRAPH SEARCH & CATEGORY CONTROLS - NEW - END */
.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: white;
  z-index: var(--z-overlay);
  padding: 30px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.info-overlay.hidden {
  display: none;
}

.info-overlay h3 {
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 10px;
}

.info-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #666;
}

.info-overlay .close-btn:hover {
  background: #e0e0e0;
}

.controls {
  margin: 0;
  background: rgba(239, 239, 237, 0.7);
  box-shadow: 0px 5px 5px rgba(239, 239, 237, 0.7);
  position: absolute;
  padding: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.5rem;
  z-index: var(--z-controls);
  pointer-events: none;
  /* ← lets clicks pass through to the graph */
  top: 0;
  left: 0;
  width: 100%;
  min-width: 900px;
}

/* Re-enable pointer events only on the interactive elements inside */
.controls button,
.controls select,
.controls input,
.cursor-selector,
.graph-search-controls,
.graph-category-options,
.graph-search-results {
  pointer-events: auto;
}

/* Position controls to the right of openMenuBtn on mobile */
@media (max-width: 768px), (max-device-width: 768px) {
  .controls {
    padding-top: 1.1rem;
    padding-left: calc(2rem + 40px);
  }
  .network-wrapper {
    width: 100%;
  }
}
/* CURSOR SELECTOR - CUSTOM - START */
/* Cursor Selector Styles */
/* Variables for maintainability */
.cursor-selector {
  display: flex;
  align-items: center;
  gap: 0px;
  background: transparent;
  margin: 0px;
}

.cursor-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 0;
  line-height: 1;
}

.cursor-btn:hover {
  color: #000;
}

.cursor-btn:active {
  color: #666;
}

.cursor-btn svg {
  pointer-events: none;
}

.cursor-slider-container {
  flex: 1;
  min-width: 120px;
  max-width: 120px;
  position: relative;
  padding: 8px 0;
}

.cursor-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #003333;
  transform: translateY(-50%);
  z-index: var(--z-slider);
}

.cursor-slider {
  width: calc(100% + 8.4px);
  height: 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border-radius: 0;
  outline: none;
  position: absolute;
  top: 50%;
  left: -4.2px;
  transform: translateY(-50%);
  z-index: var(--z-slider);
}

/* Firefox */
.cursor-slider::-moz-range-thumb {
  width: 8.4px;
  height: 12px;
  background: #003333;
  cursor: pointer;
  border: none;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: translateY(-1px);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* Chrome, Safari, Edge, Opera */
.cursor-slider::-webkit-slider-thumb {
  width: 8.4px;
  height: 12px;
  background: #003333;
  cursor: pointer;
  border: none;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: translateY(-1px);
  -webkit-appearance: none;
  appearance: none;
}

.cursor-ticks {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  pointer-events: none;
}

.cursor-tick {
  position: absolute;
  top: 0;
  width: 1px;
  height: 4px;
  background: #003333;
  transform: translate(-50%, -50%);
}

.cursor-labels {
  position: absolute;
  top: calc(50% + 6px);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.cursor-label {
  font-size: 10px;
  color: #003333;
}

.cursor-label-min {
  transform: translateX(-50%);
}

.cursor-label-max {
  transform: translateX(50%);
}

/* CURSOR SELECTOR - CUSTOM - END */
.network-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#network-wrapper,
#network-wrapper canvas {
  touch-action: pan-x pan-y !important;
}

/* Mobile-specific styles */
.pause-play-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: var(--z-buttons);
}

.zoom-controls {
  position: absolute;
  bottom: 1rem;
  left: 8rem;
  z-index: var(--z-buttons);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.zoom-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.zoom-btn:active {
  transform: scale(0.95);
}

#voirTableauBtn {
  position: relative;
  z-index: var(--z-buttons);
  padding: 0.3rem;
  margin-left: 8px;
  font-size: 0.9rem;
}

#network {
  width: 100%;
  height: 100vh;
  border: none;
  border-radius: 0;
  background: transparent;
}

.sidebar {
  display: none;
}

.stats {
  padding: 15px;
  background: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 15px;
}

.category-legend {
  padding: 15px;
  background: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.category-legend h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
  border: 2px solid #333;
  flex-shrink: 0;
}

.node-card {
  position: relative;
  float: right;
  z-index: var(--z-node-card);
  margin-right: 1rem;
  margin-top: 70px;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-height: 600px;
  overflow-y: auto;
  width: 400px;
  max-width: 90vw;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
}

.node-card h3 {
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 10px;
  font-size: 1rem;
}

.node-card h3[style*="cursor: pointer"] {
  text-decoration: none;
}

.node-card h3[style*="cursor: pointer"]:hover {
  text-decoration: underline;
}

.node-card .field {
  margin-bottom: 12px;
}

.node-card .field-label {
  font-weight: bold;
  color: #666;
  font-size: 0.75em;
  margin-bottom: 4px;
}

.node-card .field-value {
  color: #333;
  line-height: 1.5;
  font-size: 0.9em;
}

.node-card .field-value.pipe-separated {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.node-card .tag {
  background: #e3f2fd;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75em;
}

.node-card .audio-player-container {
  margin-top: 10px;
  margin-bottom: 15px;
}

.node-card .audio-iframe {
  width: 100%;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.node-card p {
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}

.error {
  color: red;
  padding: 10px;
  background: #ffe6e6;
  border-radius: 4px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

/* Index Table Styles */
.index-table-section {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.index-table-header h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.index-table-controls {
  background: #f8f9fa;
  padding: 0.5rem;
  border-radius: 5px;
}

.index-table-controls .form-control,
.index-table-controls .form-select {
  border: 1px solid #ddd;
}

#indexTable {
  font-size: 0.8rem;
}

#indexTable th,
#indexTable td {
  padding: 0.4rem 0.5rem;
}

#indexTable .item-name {
  font-weight: 500;
}

#indexTable .category-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 2px;
}

#indexTable .tag-badge {
  display: inline-block;
  padding: 2px 6px;
  background: #e3f2fd;
  border-radius: 3px;
  font-size: 0.75rem;
  margin: 2px;
  color: #1976d2;
}

#indexTable .zoom-indicator {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4CAF50;
  color: white;
  text-align: center;
  line-height: 20px;
  font-size: 0.7rem;
  font-weight: bold;
}

#indexTable .zoom-indicator.no-zoom {
  background: #ccc;
}

#indexTable .action-btn {
  color: #000000;
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}

#indexTable .action-btn:hover {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

#indexTable .savoirs-text {
  max-width: 300px;
  min-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

#indexTable .tags-container {
  max-width: 180px;
}

/* Table scrolling container */
.index-table-container {
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: auto;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  width: 100%;
}

/* Apply sticky to TH elements, not just THEAD */
.index-table-container th {
  position: sticky;
  top: 0;
  background: white;
  /* must match your header color */
  z-index: var(--z-overlay);
  border: none;
  box-shadow: 0 1px 0 0 #dee2e6;
  border-radius: 0px !important;
}

/* Scrollbar styles on the container, NOT on tbody */
.index-table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.index-table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.index-table-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.index-table-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.col,
.col-auto {
  margin: 0;
}

/* Pagination styles */
#indexPagination .pagination {
  margin: 0;
}

#indexPagination .page-link {
  color: #4CAF50;
  border-color: #dee2e6;
}

#indexPagination .page-item.active .page-link {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: white;
}

#indexPagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

#indexPagination .page-link:hover {
  color: #45a049;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* Sortable column headers */
#indexTable th.sortable {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-right: 25px;
}

#indexTable th.sortable:hover {
  background-color: #e9ecef;
}

#indexTable th.sortable.sort-asc .sort-indicator::after {
  content: "▲";
  color: #4CAF50;
}

#indexTable th.sortable.sort-desc .sort-indicator::after {
  content: "▼";
  color: #4CAF50;
}

/* Fix pagination layout */
#indexPagination .pagination {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

#indexPagination .page-item {
  display: inline-block;
  margin: 0 2px;
}

#indexPagination .page-link {
  display: block;
  padding: 0.375rem 0.75rem;
  text-decoration: none;
}

/* Active button state */
.btn-outline-primary.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: white;
}

.btn-outline-primary.active:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  color: white;
}

/* Index table section inside container */
#indexViewContainer .index-table-section {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Prevent section from overflowing */
}

/* Full width for index view */
.main-content.index-view-active .graph-container {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.main-content.index-view-active .sidebar {
  display: none;
}

/* vis.js tooltip styling - semi-transparent with blurred edges */
.vis-tooltip {
  background: transparent !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  padding: 16px;
  border: 0px !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  font-family: "BBBDMSans", sans-serif !important;
  font-size: 16px !important;
  /* Fixed: removed space */
  pointer-events: none !important;
  /* Create fade effect at edges */
  -webkit-mask: linear-gradient(to right, transparent, black 10px, black calc(100% - 10px), transparent), linear-gradient(to bottom, transparent, black 10px, black calc(100% - 10px), transparent) !important;
          mask: linear-gradient(to right, transparent, black 10px, black calc(100% - 10px), transparent), linear-gradient(to bottom, transparent, black 10px, black calc(100% - 10px), transparent) !important;
}/*# sourceMappingURL=graph.css.map */