/**
 * User Menu Styles
 * Add to your theme's CSS file or create: css/user-menu.css
 */

/* User menu wrapper */
.user-menu-wrapper {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0px;
}

/* User icon button */
.user-icon-button {
  background: transparent;
  border: none;
  color: #D97D21 ;
  font-size: 28px;
  cursor: pointer;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.user-icon-button:hover {
 color: #D97D21;
  /*  transform: scale(1.1);*/
}

.user-icon-button i {
  font-size: 28px;
}

/* Login text */
.login-text {
  font-size: 14px;
  font-weight: 500;
}

/* User name in dropdown button */
.user-name-mobile {
  font-size: 14px;
  font-weight: 500;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown menu customization */
.user-menu .dropdown-menu {
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 0;
}

.user-menu .dropdown-item {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.user-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #f47d21;
}

.user-menu .dropdown-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.user-menu .dropdown-divider {
  margin: 8px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .user-menu-wrapper {
    margin-left: 10px;
  }

  .user-icon-button {
    padding: 8px;
  }

  .user-icon-button i {
    font-size: 24px;
  }
}

/* Alternative style - with border/background */
.user-icon-button.styled {
  border: 2px solid #ff6600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.user-icon-button.styled:hover {
  background-color: #ff6600;
  color: #fff;
}
