/* ============================================================================
   USER MENU & DROPDOWN
   ============================================================================ */

.user-menu {
  position: relative;
}

.user-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}

.user-menu-icon {
  width: 2rem;
  height: 2rem;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.user-menu-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
  z-index: 1500;
}

.user-menu-dropdown.hidden {
  display: none;
}

.user-menu-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.user-menu-item:hover {
  background: #f2f2f2;
}