body {
    font-family: Arial, sans-serif;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10rem;
  padding: 2rem 1rem;
  background-color: #f8f9fa;
  border-right: 1px solid #dee2e6;
}

.sidebar-nav .nav-link {
  color: #333; /* non active */
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-left: 3px solid transparent; /* Transparent border for alignment */
  transition: all 0.1s ease-in-out;
}

/* Style for the active navigation link */
.sidebar-nav .nav-link.active {
  color: #0d6efd; /* Bootstrap's primary blue color */
  font-weight: 700; /* Bolder text for active link */
  border-left: 3px solid #0d6efd; /* The blue highlight bar */
  background-color: transparent !important; /* Override default background */
}

.sidebar-nav .nav-link:hover {
  color: #000;
  background-color: #e9ecef; /* color on hover */
  border-left: 3px solid #ccc;
}

.sidebar-nav .nav-link.active:hover {
    border-left: 3px solid #0d6efd; /* active blue border on hover */
    background-color: transparent;
}

#content {
    margin-left: 10rem;
    margin-right: 2rem;
    padding: 2rem 2rem;
}

.plot {
    margin-top: 30px;
    padding: 20px;
    border: 1 px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}