.user-menu {
    position: relative;
    display: inline-block;
}

/* ===== TRIGGER ===== */
.user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===== DROPDOWN ===== */
.user-dropdown {
    position: absolute;
    top: 100%;
    min-width: 200px;
    background: #fff;
    list-style: none;
    margin: 10px 0 0;
    padding: 10px;
    z-index: 999;

    display: none;
}

/* sichtbar */
.user-dropdown.active {
    display: block;
}

/* Position */
.user-dropdown.dropdown-right {
    right: 0;
    left: auto;
}

.user-dropdown.dropdown-left {
    left: 0;
}

/* ===== ITEMS ===== */
.user-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    text-decoration: none;
    border-radius: 6px;
}

.user-dropdown li a:hover {
    background: rgba(0,0,0,0.05);
}

/* Divider */
.user-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* Icon/Text */
.menu-icon {
    display: inline-flex;
}

.menu-text {
    display: inline-block;
}

.trigger-text {
    font-size: 14px;
    line-height: 1;
}

.user-login-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-login-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.user-login-form input[type="submit"] {
    cursor: pointer;
}

.is-hidden {
    display: none !important;
}


.login-toggle  {
    text-align: center;
}

.login-toggle span {
   color: var(--e-global-color-accent);
   text-decoration-line: underline;
   text-decoration-color: var(--e-global-color-accent);
   text-decoration-style: solid; /* Optionen: solid, double, dotted, dashed, wavy */
   text-decoration-thickness: 1px;
   text-decoration-skip-ink: auto;
   cursor: pointer;
}

.register-toggle {
    text-align: center;
}

.register-toggle span {
   color: var(--e-global-color-accent);
   text-decoration-line: underline;
   text-decoration-color: var(--e-global-color-accent);
   text-decoration-style: solid; /* Optionen: solid, double, dotted, dashed, wavy */
   text-decoration-thickness: 1px;
   text-decoration-skip-ink: auto;
   cursor: pointer;
}

