/* Set a style for all buttons */
button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}

.visualmenubutton {
  width: 600px;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #444;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

.visualmenuoption {
  float: left;
  padding: 16px;
}

table.reconstructedsegmentslist {
  background-color: yellow;
}

table.fundamentalattributesdiv {
  padding: 5px;
}

.fundamentalattributesdivlabel {
  vertical-align: top;
}

.smallpanel {
  float: left;
  width: 20%;
}

.largepanel {
  float: left;
  width: 59%;
}

.fullpanel {
  width: 99%;
}

.mediumpanel {
  float: left;
  width: 30%;
}

.tinypanel {
  float: left;
  width: 5%;
}

/* Styles for the vrbrowser container */
.vrbrowser {
  margin: 0;
  padding: 0;
  position: relative; /* Confines absolutely positioned children within this div */
  width: 100%; /* Ensures the div takes full width */
  height: calc(100vh - 200px); /* Adjust to fill the remaining viewport below existing elements */
  overflow: hidden; /* Prevent scrollbars */
}

/* Ensure canvas fills the vrbrowser div */
.vrbrowser canvas {
  display: block;
  position: absolute; /* Position the canvas absolutely within vrbrowser */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Base layer */
}

/* Info div styling */
.vrbrowser #info {
  position: absolute;
  top: 10px; /* Positioning at the top left of the div */
  left: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  z-index: 2; /* On top of the canvas */
}

/* Controls div styling */
.vrbrowser #controls {
  position: absolute;
  top: 60px; /* Below the info div */
  left: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  z-index: 2; /* On top of the canvas */
}

/* Crosshair styling */
.vrbrowser #crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: yellow;
  display: none; /* Hide initially */
  z-index: 3; /* Above the canvas and other elements */
}

/* Scoped modal styles for vrbrowser page */
.vrbrowser .modal {
  display: none;
  position: fixed;
  z-index: 1000; /* Ensure it appears above all other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Transparent black background */
}

.vrbrowser .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  z-index: 1001; /* Above the modal background */
}

.vrbrowser .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.vrbrowser .close:hover,
.vrbrowser .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  .kitcompare {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kitcompare-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.kitcompare-description {
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #555;
}

.kitcompare-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

.kitcompare-input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

.kitcompare-input:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}
}
