.dlw-login-widget {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dlw-login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.dlw-login-link i, .dlw-login-link svg {
  transition: all 0.3s ease;
}

.dlw-login-text {
  transition: color 0.3s ease;
  white-space: nowrap;
}

.dlw-logout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  top: 100%;
  left: 0;
  z-index: 1;
  min-width: 120px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.dlw-logout a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}

.dlw-login-widget:hover .dlw-logout,
.dlw-logout:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dlw-logout a:hover {
  background: #f5f5f5;
}