/* 用户导航样式 */
.welcome-user {
    color: #fff;
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
    font-size: 13px;
}

.global a[data-lang="global-logout"] {
    background: #dc3545;
    color: white !important;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.global a[data-lang="global-logout"]:hover {
    background: #c82333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .welcome-user {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .global {
        text-align: center;
    }
}