body { 
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  height: 100vh;
}

.left {
  width: 14%;
  background-color: #ffffff;
  padding: 15px;
}

.left p {
  margin-left: 0.3cm;  /* shift text right */
  margin-top: 0.8cm; /* spacing between items */
  font-size: 19px;   /* adjust text size */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.right {
  width: 70%;
  background-color: #ddd;
  padding: 20px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 15px 0;
}

.menu a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.menu a:hover {
  background-color: #f0f0f0;
}

/* ACTIVE LINK: Only bold text, no background */
.menu a.active {
  font-weight: 700;  /* bold */
  background-color: transparent !important; /* remove background */
}
