/* styles.css */
h1 {
    /* color: blue; */
    text-align: center;
}
body {
  font-family: sans-serif;
}

table {
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    border: 1px solid black;
    text-align: center;
    vertical-align: middle;
}
th, td {
    border: 1px solid black;
    padding: 3px;
}

tbody tr:nth-child(odd) {
  background-color: #fff;
}

tbody tr:nth-child(even) {
  background-color: #eee;
}

.context_tab {
    background-color: #333;
    color: white;
    font-weight: bold;
}

.column-large {
  min-width: 240px;
  max-width: 240px;
}

.column-medium {
  min-width: 120px;
  max-width: 120px;
}

.column-small {
  min-width: 60px;
  max-width: 60px;
}

/* th { */
/*   width: 10%; */
/* } */

.vis-float-root {
  display: flex;
  justify-content: center;
}

.vis-float-container {
  width: 100%;
  border: 3px solid #fff;
  padding: 20px;
}

.vis-float-bubbles {
  width: 45%;
  height: 600px;
  float: left;
  border: 2px solid black;
  border-radius: 4px;
  padding: 16px;
}

.vis-float-selection {
  width: 50%;
  height: 100%;
  float: right;
  border: 2px solid black;
  border-radius: 4px;
  padding: 16px;
}

.canvas-bubbles {
  /* for debug only */
  /* border: 1px solid blue; */
  box-sizing: border-box;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.custom-line {
  height: 2px; /* Line thickness */
  background-color: #000; /* Line color */
  width: 100%; /* Line width */
  margin: 10px 0; /* Optional: space above and below the line */
}

.welcome-container {
  display: flex;
  flex-direction: column; /* stack children vertically */
  align-items: center; /* center children horizontally */
  justify-content: center; /* center children vertically */
  height: 100vh; /* adjust as needed */
}

.welcome-vis-bubbles {
  width: 45%;
  height: 600px;
  border: 2px solid black;
  border-radius: 4px;
  padding: 16px;
}

.welcome-description {
    padding: 16px;
    width: 50%;
}

/* Navbar styles */
.navbar {
    background: linear-gradient(to right, #FFD700, #FFA500);
}

.navbar .navbar-nav .nav-item .nav-link {
    color: blue;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: darkblue;
}
