/* CSS SHORTCODE:custom_user_menu. ,  aquí */
.user-menu {
  position: relative;
  cursor: pointer;
}

.user-trigger,
.user-login {
  color: #706f6f !important;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.user-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 10px 0;
  min-width: 160px;
  display: none;
  border-radius: 8px;
}

.user-dropdown a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333333 !important;
}

.user-dropdown a:hover {
  background: #f5f5f5 !important;
}

.user-menu:hover .user-dropdown {
  display: block;
}
.user-login {
  color: #706f6f !important;
  text-decoration: none;
}

.user-icon,
.arrow-icon {
  display: block;
}


.user-dropdown::before {
  content: "";
  position: absolute;
  top: -15px; /* Altura suficiente para cubrir el hueco */
  left: 0;
  width: 100%;
  height: 15px;
  display: block;
  background: transparent; /* Es invisible, pero detecta el mouse */
}

@media(max-width:767px){
    selector .user-dropdown {
        left: 0;
    }
}