/* Custom Dropdown for Insurance Product in Sidebar */
.custom-dropdown {
  position: relative;
  display: block;
}
.custom-dropbtn {
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
}
.custom-dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}
.custom-dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.custom-dropdown-content a:last-child {
  border-bottom: none;
}
.custom-dropdown:hover .custom-dropdown-content,
.custom-dropdown:focus-within .custom-dropdown-content {
  display: block;
}
