/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  padding: 10px 15px;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
