.sidebar {
  width: 250px;
  min-height: 100vh;
}
.sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: 0.2s;
}
.content {
  width: calc(100% - 250px);
  min-height: 100vh;
  background-color: #f8f9fa;
}

.sidebar a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}

.sidebar .collapse a {
  font-size: 0.95rem;
  padding-left: 1rem;
}
