.smk-user-menu {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.smk-user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.smk-user-name {
    font-size: 16px;
    color: #f5f5f5;
}

.smk-arrow {
    font-size: 10px;
    color: #f5f5f5;
}

.smk-dropdown {
    position: absolute;
    top: 140%;
    right: 0;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    /* border-radius: 6px; */
    overflow: hidden;
    z-index: 999;
}

.smk-dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.smk-dropdown a:hover {
    background: #555353;
    color: #fff;
}

.smk-login-btn {
    padding: 8px 16px;
    background: #F47B47;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.smk-login-btn:hover {
    background: transparent;
    border: 1px solid #F47B47;
    color: #F47B47;
}

/* Show dropdown */
.smk-user-menu.active .smk-dropdown {
    display: block;
}
