.mobile-nav {
    display: none;
}
.footer {
    display: none;
}
.user {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
}
.user .userCenter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.user .user-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.user .user-header .user-avatar .usre-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.user .user-card {
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
}
.user .user-card .user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #eee;
}
.user .user-card .user-item:last-child{
    border-bottom: none;
}
.user .user-card .user-item .user-left {
    display: flex;
    align-items: center;
    gap: 5px;
}
.user .user-footer .logout {
    width: 100%;
    background:#4ed462 100%;
    color: #ffffff;
    font-size: 16px;
    border-radius: 10px;
    height: 36px;
    border: none;
}

@media screen and (max-width: 992px) {
    .tab {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
    .footer {
        display: none;
    }
    .user {
        width: 100%;
    }
}