 /* General Styles */
 body {
    font-family: Arial, sans-serif;
  }

  .Home-sidebar-title {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  margin: 10px;
  border: 2px solid #28a745;
  border-radius: 5px;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, rgba(128, 210, 204, 1), rgba(220, 240, 171, 1)); /* Initial gradient */
}

.Home-sidebar-title:hover {
  color: black; /* Set text color on hover */
  background: linear-gradient(45deg, rgba(220, 240, 171, 1), rgba(128, 210, 204, 1)); /* Reverse gradient on hover */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.Home-sidebar-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.1));
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: 5px;
}

.Home-sidebar-title:hover::after {
  opacity: 1;
}

.Home-sidebar-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 24px;
  transition: color 0.3s ease;
}

.Home-sidebar-close-btn:hover {
  color: #28a745;
}