.floating-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 200px;
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
}

.floating-nav h3 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-align: center;
}

.floating-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.floating-nav li {
  margin-bottom: 10px;
}

.floating-nav a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4a5568;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.floating-nav a:hover {
  background-color: #f0f0f0;
  color: #3498db;
}

.floating-nav i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #3498db;
}

.floating-nav-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .floating-nav {
    display: none;
  }
  
  .floating-nav.show {
    display: block;
    right: 20px;
    top: auto;
    bottom: 80px;
    transform: none;
  }
  
  .floating-nav-toggle {
    display: flex;
  }
}