.ms-user-info-box {
    border-radius: 12px;
    padding: 20px;
    max-width: 700px;
    margin: 20px auto;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

.ms-user-info-box:hover {
    transform: scale(1.01);
}

.ms-user-account-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    width: 100px;
    max-width: 110px;
    text-align: center;
}

/* Tùy theo loại tài khoản */
.ms-account-basic {
    background-color: #999;
}
.ms-account-premium {
    background-color: #FF9800;
}

.ms-user-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.ms-user-info-label {
    flex: 0 0 150px;
    font-weight: bold;
    color: #333;
}

.ms-user-info-value {
    flex: 1;
    color: #555;
}

