.navbar-icon {
  position: relative;
  display: inline-block;
}

.navbar-icon img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  border-radius: 8px;
  z-index: 1000;
  padding: 10px;
  color: #000;
}

.dropdown-content.active {
  display: block;
}

.dropdown-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.dropdown-header img.profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 2px solid #ccc;
}

.dropdown-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #000;
}

.dropdown-header p {
  margin: 0;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.dropdown-content button {
  width: 100%;
  padding: 8px;
  border: none;
  background: none;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
  color: #000;
}

.dropdown-content button:hover:not(:disabled) {
  background: #f0f0f0;
}

.dropdown-content button:disabled {
  color: #aaa;
  cursor: not-allowed;
}
