
/* Member list container */
.memberlistpage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Each user card */
.memberlistuser33 {
    flex: 1 1 280px; /* flexible width for responsiveness */
    max-width: 300px;
    min-width: 220px;
    background: linear-gradient(to bottom, #ffffff 0%, #e8ecf3 100%);
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
}

/* Avatar */
.memberuseravatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #e8ecf3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.memberuseravatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

/* Username / title */
.memberlisttitle {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Flex container for stats */
.memflex {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 5px 0;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 5px;
}

/* Registration and last visit info */
.memberlistregist,
.memberlistvisit {
    font-size: 12px;
    padding: 6px 10px;
    width: 100%;
    background: #f5f7fa;
    border-radius: 6px;
    margin-bottom: 5px;
}

/* Posts and threads info */
.memberlistpost,
.memberlistthreads {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 10px;
    width: 100%;
    background: #f5f7fa;
    border-radius: 6px;
    margin-bottom: 5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .memberlistuser33 {
        max-width: 95%;
        margin: 10px auto;
        padding: 20px;
    }

    .memflex {
        flex-direction: column;
        align-items: center;
    }

    .memberlistregist,
    .memberlistvisit,
    .memberlistpost,
    .memberlistthreads {
        width: 100%;
    }

    .memberuseravatar {
        margin-top: 0;
        margin-bottom: 15px;
    }
}










































		